diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2018-11-07 20:07:20 +0100 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2018-11-07 20:07:43 +0100 |
commit | 4e94f49065d577831742b37ffbba300ff74506df (patch) | |
tree | cb8b9792ad9bbc7ae1d6ea816e27da6b26d006ae /compiler | |
parent | 1c73db08b8d4f847f2868d8f5a3284cfb4e47428 (diff) | |
download | Nim-4e94f49065d577831742b37ffbba300ff74506df.tar.gz |
parser/grammar sync; fixes #9608 [backport]
Diffstat (limited to 'compiler')
-rw-r--r-- | compiler/parser.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/parser.nim b/compiler/parser.nim index 6e83a6710..fd2a52e78 100644 --- a/compiler/parser.nim +++ b/compiler/parser.nim @@ -282,7 +282,7 @@ proc checkBinary(p: TParser) {.inline.} = #| #| prefixOperator = operator #| -#| optInd = COMMENT? +#| optInd = COMMENT? IND? #| optPar = (IND{>} | IND{=})? #| #| simpleExpr = arrowExpr (OP0 optInd arrowExpr)* pragma? |