diff options
author | Jo-Philipp Wich <jo@mein.io> | 2020-10-13 19:01:02 +0200 |
---|---|---|
committer | Jo-Philipp Wich <jo@mein.io> | 2020-10-14 12:23:08 +0200 |
commit | 07c147a1803270aba871c9024e021fd913cb8e2a (patch) | |
tree | d05fcecf8afc6e82b6c659b272d23029a6cc9249 /tests/00_syntax | |
parent | 05cc0ee7a7c7dc442e22dfdc22c0574ac6b3e71b (diff) |
treewide: unify error handling
Get rid of the distinction between lexer/parser errors and runtime
exceptions, use exceptions everywhere instead.
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
Diffstat (limited to 'tests/00_syntax')
-rw-r--r-- | tests/00_syntax/01_unterminated_comment | 2 | ||||
-rw-r--r-- | tests/00_syntax/05_block_nesting | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/00_syntax/01_unterminated_comment b/tests/00_syntax/01_unterminated_comment index 0a28af1..1d3669c 100644 --- a/tests/00_syntax/01_unterminated_comment +++ b/tests/00_syntax/01_unterminated_comment @@ -2,7 +2,7 @@ Unterminated comment -- Expect stderr -- Syntax error: Unterminated template block -In line 1, byte 8: +In line 1, byte 9: `This is {# an unclosed comment` ^-- Near here diff --git a/tests/00_syntax/05_block_nesting b/tests/00_syntax/05_block_nesting index 728c00c..7b74adb 100644 --- a/tests/00_syntax/05_block_nesting +++ b/tests/00_syntax/05_block_nesting @@ -2,7 +2,7 @@ Nesting blocks into non-comment blocks should fail. -- Expect stderr -- Syntax error: Template blocks may not be nested -In line 2, byte 60: +In line 2, byte 61: `We may not nest statement blocks into expression blocks: {{ {% print(1 + 2) %} }}.` Near here --------------------------------------------------^ |