summary refs log tree commit diff stats
path: root/compiler/parser.nim
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2013-09-24 16:07:07 +0200
committerAraq <rumpf_a@web.de>2013-09-24 16:07:07 +0200
commit8b5aa221adc9946894225dc569bac9d2d8bdde6d (patch)
tree4affd857c41c15ed3ba4e0d2c210b69f30664489 /compiler/parser.nim
parent83584bf88934c45ce10e770ee15d070a09f88f45 (diff)
downloadNim-8b5aa221adc9946894225dc569bac9d2d8bdde6d.tar.gz
support for multiple modules of the same name; niminst supports 'platforms'; minor bugfixes
Diffstat (limited to 'compiler/parser.nim')
-rw-r--r--compiler/parser.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/parser.nim b/compiler/parser.nim
index a2fe34849..6e2d0867b 100644
--- a/compiler/parser.nim
+++ b/compiler/parser.nim
@@ -1440,7 +1440,7 @@ proc parseSection(p: var TParser, kind: TNodeKind,
       skipComment(p, result)
       while sameInd(p):
         case p.tok.tokType
-        of tkSymbol, tkAccent: 
+        of tkSymbol, tkAccent, tkParLe: 
           var a = defparser(p)
           skipComment(p, a)
           addSon(result, a)