summary refs log tree commit diff stats
path: root/compiler/parser.nim
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2014-02-17 23:59:48 +0100
committerAraq <rumpf_a@web.de>2014-02-17 23:59:48 +0100
commit9b63fccf16048121d79fc825107ea7433faa25e7 (patch)
tree7786c489c36b5ba58d90ab4d52a798c0362fed12 /compiler/parser.nim
parent420d4197f139c277f7b7d0eaf462ed0fe9e00745 (diff)
parenteaab22089da855163485949d8bd6a6ae9c1d25c8 (diff)
downloadNim-9b63fccf16048121d79fc825107ea7433faa25e7.tar.gz
Merge branch 'devel' of https://github.com/Araq/Nimrod into devel
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 ff3324b47..5a5bfb574 100644
--- a/compiler/parser.nim
+++ b/compiler/parser.nim
@@ -281,7 +281,7 @@ proc parseSymbol(p: var TParser): PNode =
         add(result, newIdentNodeP(getIdent"{}", p))
         getTok(p)
         eat(p, tkCurlyRi)
-      of tokKeywordLow..tokKeywordHigh, tkSymbol, tkOpr, tkDotDot:
+      of tokKeywordLow..tokKeywordHigh, tkSymbol, tkOpr, tkDot, tkDotDot:
         add(result, newIdentNodeP(p.tok.ident, p))
         getTok(p)
       of tkIntLit..tkCharLit: