summary refs log tree commit diff stats
path: root/tests/system
diff options
context:
space:
mode:
authormetagn <metagngn@gmail.com>2022-12-06 15:11:56 +0300
committerGitHub <noreply@github.com>2022-12-06 13:11:56 +0100
commit4ca2dcb404aa1b92900e838790d5df554fc0cb9a (patch)
tree13ba43b84b90c24f23b528fe110e15338e35fae6 /tests/system
parent1564ae650f8d4d4c30adf4528f74d7707e4cb737 (diff)
downloadNim-4ca2dcb404aa1b92900e838790d5df554fc0cb9a.tar.gz
Named arguments in commands + many grammar fixes (#20994)
* Breaking parser changes, implement https://github.com/nim-lang/RFCs/issues/442

Types are separated from expressions and better reflected in the grammar.

* add test

* more accurate grammar

* fix keyword typedescs

* accept expressions in proc argument lists

* CI "fixes"

* fixes

* allow full ref expressions again, adapt old tests

* cleanup, fix some tests

* improve grammar, try and revert semtypes change

* restrict sigil binding to identOrLiteral

* fix, should have caught this immediately

* add changelog entry, fix double not nil bug

* correct grammar

* change section

* fix

* real fix hopefully

* fix test

* support LL(1) for tuples

* make grammar.txt too
Diffstat (limited to 'tests/system')
-rw-r--r--tests/system/tvarargslen.nim6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/system/tvarargslen.nim b/tests/system/tvarargslen.nim
index a129aa5c2..24b54a1e0 100644
--- a/tests/system/tvarargslen.nim
+++ b/tests/system/tvarargslen.nim
@@ -1,8 +1,8 @@
 discard """
   output: '''
-tvarargslen.nim:35:9 (1, 2)
-tvarargslen.nim:36:9 12
-tvarargslen.nim:37:9 1
+tvarargslen.nim:35:2 (1, 2)
+tvarargslen.nim:36:2 12
+tvarargslen.nim:37:2 1
 tvarargslen.nim:38:8 
 done
 '''