diff options
author | Jo-Philipp Wich <jo@mein.io> | 2021-05-14 18:45:10 +0200 |
---|---|---|
committer | Jo-Philipp Wich <jo@mein.io> | 2021-05-14 18:46:31 +0200 |
commit | 1ddf5b68fa60736c1dd9ffda5eba09bbd90309e1 (patch) | |
tree | 336e3162fbef90b4f838d2effc616b4a1bb20037 /tests | |
parent | 9951a003e53d39a8d00b13b694a3a106e161c552 (diff) |
lexer: skip interpreter line in any source buffer
Skip interpreter lines in any source buffer and handle the skipping in the
lexer itself, to avoid reporting wrongly shifted token offsets to the
compiler, resulting in wrong error locations and source contexts.
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/custom/03_bugs/25_lexer_shifted_offsets | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/tests/custom/03_bugs/25_lexer_shifted_offsets b/tests/custom/03_bugs/25_lexer_shifted_offsets new file mode 100644 index 0000000..db10121 --- /dev/null +++ b/tests/custom/03_bugs/25_lexer_shifted_offsets @@ -0,0 +1,21 @@ +When lexing a source buffer with a non-zero offset, e.g. due to a +skipped interpreter line, lexical tokens reported a wrong offset +to the compiler, causing error locations and source context lines +to be incorrectly shifted. + +-- Testcase -- +#!/usr/bin/env ucode +{% + die("Error"); +%} +-- End -- + +-- Expect stderr -- +Error +In line 3, byte 12: + + ` die("Error");` + Near here -----^ + + +-- End -- |