diff options
author | John Hodge <tpg@mutabah.net> | 2016-10-08 20:01:36 +0800 |
---|---|---|
committer | John Hodge <tpg@mutabah.net> | 2016-10-08 20:01:36 +0800 |
commit | 42d954bae579c9a72543a5ade61061f1b0cdcd08 (patch) | |
tree | 7ea1e3df7f5be3c5db0de8a4cb50c80e3b0284c4 /src | |
parent | f97bfa4b393522b6eb1541f708aebbb4ee211e0c (diff) | |
download | mrust-42d954bae579c9a72543a5ade61061f1b0cdcd08.tar.gz |
Parse Expr - Treat [ as the start of a value in .. handling
Diffstat (limited to 'src')
-rw-r--r-- | src/parse/expr.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/parse/expr.cpp b/src/parse/expr.cpp index 8053b4ab..ff8be897 100644 --- a/src/parse/expr.cpp +++ b/src/parse/expr.cpp @@ -647,6 +647,7 @@ bool Parse_IsTokValue(eTokenType tok_type) case TOK_RWORD_BOX:
case TOK_RWORD_IN:
case TOK_PAREN_OPEN:
+ case TOK_SQUARE_OPEN:
case TOK_MACRO:
|