the parser finally parses 'echo {1,2}' as it should

This commit is contained in:
Andreas Rumpf
2017-09-30 21:35:30 +02:00
parent b2c358be96
commit ddc131cf07
18 changed files with 26 additions and 38 deletions

View File

@@ -64,7 +64,7 @@ proc TestLoops() =
var
glob: int
a: array [0..5, int]
a: array[0..5, int]
proc main() =
#glob = 0

View File

@@ -6,7 +6,7 @@ type
TPoint {.final.} = object
x, y, z: int
s: array [0..1, string]
s: array[0..1, string]
e: TEnum
var

View File

@@ -7,10 +7,10 @@ type
kind: TRadixNodeKind
TRadixNodeLinear = object of TRadixNode
len: int8
keys: array [0..31, char]
vals: array [0..31, PRadixNode]
keys: array[0..31, char]
vals: array[0..31, PRadixNode]
TRadixNodeFull = object of TRadixNode
b: array [char, PRadixNode]
b: array[char, PRadixNode]
TRadixNodeLeaf = object of TRadixNode
s: string
PRadixNodeLinear = ref TRadixNodeLinear