summaryrefslogtreecommitdiffhomepage
path: root/tests/custom/03_stdlib
diff options
context:
space:
mode:
authorJo-Philipp Wich <jo@mein.io>2023-07-11 12:12:21 +0200
committerJo-Philipp Wich <jo@mein.io>2023-07-12 00:38:49 +0200
commit24f1a5617ae3976313ace91970d1994a1ae7cc89 (patch)
tree8cc3508e5c2b10c34190571161f46d879016eed2 /tests/custom/03_stdlib
parent9df91602e3aba0edc4771b220663f442f836f986 (diff)
source: fix source offset accounting
- When skipping the interpreter line, don't count it's newline twice - Fix reporting byte offsets beyond the end of line Signed-off-by: Jo-Philipp Wich <jo@mein.io>
Diffstat (limited to 'tests/custom/03_stdlib')
-rw-r--r--tests/custom/03_stdlib/29_require2
-rw-r--r--tests/custom/03_stdlib/35_include2
-rw-r--r--tests/custom/03_stdlib/36_render2
-rw-r--r--tests/custom/03_stdlib/62_loadfile2
4 files changed, 4 insertions, 4 deletions
diff --git a/tests/custom/03_stdlib/29_require b/tests/custom/03_stdlib/29_require
index a81edb4..3736339 100644
--- a/tests/custom/03_stdlib/29_require
+++ b/tests/custom/03_stdlib/29_require
@@ -134,7 +134,7 @@ return {
Runtime error: Unable to compile source file './files/require/test/broken.uc':
| Syntax error: Expecting label
- | In line 2, byte 10:
+ | In line 3, byte 1:
|
| `return {`
| ^-- Near here
diff --git a/tests/custom/03_stdlib/35_include b/tests/custom/03_stdlib/35_include
index 83c34bb..823748a 100644
--- a/tests/custom/03_stdlib/35_include
+++ b/tests/custom/03_stdlib/35_include
@@ -147,7 +147,7 @@ A compilation error in the file triggers an exception.
Runtime error: Unable to compile source file './files/broken.uc':
| Syntax error: Expecting label
- | In line 3, byte 11:
+ | In line 4, byte 1:
|
| ` return {`
| Near here --^
diff --git a/tests/custom/03_stdlib/36_render b/tests/custom/03_stdlib/36_render
index aa2a27b..19824cc 100644
--- a/tests/custom/03_stdlib/36_render
+++ b/tests/custom/03_stdlib/36_render
@@ -146,7 +146,7 @@ A compilation error in the file triggers an exception.
Runtime error: Unable to compile source file './files/broken.uc':
| Syntax error: Expecting label
- | In line 3, byte 11:
+ | In line 4, byte 1:
|
| ` return {`
| Near here --^
diff --git a/tests/custom/03_stdlib/62_loadfile b/tests/custom/03_stdlib/62_loadfile
index 4926696..9aaa0cf 100644
--- a/tests/custom/03_stdlib/62_loadfile
+++ b/tests/custom/03_stdlib/62_loadfile
@@ -134,7 +134,7 @@ Compiling a syntax error (should fail with syntax error exception)
Runtime error: Unable to compile source file './files/test6.uc':
| Syntax error: Expecting expression
- | In line 1, byte 5:
+ | In line 2, byte 1:
|
| `1 +`
| ^-- Near here