diff options
author | hlaaftana <10591326+hlaaftana@users.noreply.github.com> | 2020-05-08 08:54:46 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-08 07:54:46 +0200 |
commit | de27910ab72dca681188953ae963802520271e43 (patch) | |
tree | 7ba0e839a7d659004ae9beb87d07bea31ee7e2fe /doc/grammar.txt | |
parent | 5fa7d374c4cb777372cf5b967575f228bda23c2b (diff) | |
download | Nim-de27910ab72dca681188953ae963802520271e43.tar.gz |
make `from` an operator (#14241)
Diffstat (limited to 'doc/grammar.txt')
-rw-r--r-- | doc/grammar.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/grammar.txt b/doc/grammar.txt index 06eebbc1b..9d952d372 100644 --- a/doc/grammar.txt +++ b/doc/grammar.txt @@ -6,7 +6,7 @@ colon = ':' COMMENT? colcom = ':' COMMENT? operator = OP0 | OP1 | OP2 | OP3 | OP4 | OP5 | OP6 | OP7 | OP8 | OP9 | 'or' | 'xor' | 'and' - | 'is' | 'isnot' | 'in' | 'notin' | 'of' | 'as' + | 'is' | 'isnot' | 'in' | 'notin' | 'of' | 'as' | 'from' | | 'div' | 'mod' | 'shl' | 'shr' | 'not' | 'static' | '..' prefixOperator = operator optInd = COMMENT? IND? |