diff options
author | dec05eba <dec05eba@protonmail.com> | 2019-03-02 00:40:08 +0100 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2020-07-25 14:36:46 +0200 |
commit | 00ab5c3488c02beab5c3f4e371f5196404334e3c (patch) | |
tree | 51179376d5ff4754f0ddc6366b8b56d57a12c334 /tests | |
parent | 971e0015e2d2008a5bc87e77894327c14c01b253 (diff) |
Fix crash in parser import, optimize tokenizer_consume_if to not reparse if already parsed
Diffstat (limited to 'tests')
-rw-r--r-- | tests/main.amal | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/main.amal b/tests/main.amal index dde97f7..0cd7154 100644 --- a/tests/main.amal +++ b/tests/main.amal @@ -4,7 +4,7 @@ const main = () { var hello = () { } - hello() + const value = "hello, world!"; } const print = () { |