diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2016-02-28 19:56:41 +0100 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2016-02-28 19:56:41 +0100 |
commit | 38dee2095c3b04e0f6eb8e5e9751ab7b4755d3e8 (patch) | |
tree | 2575438b6bb9016592186d19456a91e9c9205264 /compiler/parser.nim | |
parent | 7ae45ea4202a71df134dbe0ca74c0b944dc1f48a (diff) | |
download | Nim-38dee2095c3b04e0f6eb8e5e9751ab7b4755d3e8.tar.gz |
added 'sig' feature; removed tfShared support in the compiler
Diffstat (limited to 'compiler/parser.nim')
-rw-r--r-- | compiler/parser.nim | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler/parser.nim b/compiler/parser.nim index c4681a5cd..560510b27 100644 --- a/compiler/parser.nim +++ b/compiler/parser.nim @@ -1938,6 +1938,7 @@ proc complexOrSimpleStmt(p: var TParser): PNode = of tkLet: result = parseSection(p, nkLetSection, parseVariable) of tkWhen: result = parseIfOrWhen(p, nkWhenStmt) of tkVar: result = parseSection(p, nkVarSection, parseVariable) + of tkSig: result = parseSection(p, nkSigSection, parseVariable) of tkBind: result = parseBind(p, nkBindStmt) of tkMixin: result = parseBind(p, nkMixinStmt) of tkUsing: result = parseBind(p, nkUsingStmt) |