Add optional filtering expression to loop operator

This commit is contained in:
Bartłomiej Pluta
2019-07-15 20:43:33 +02:00
parent 83c7b92741
commit 44e63ed18d
4 changed files with 47 additions and 12 deletions

View File

@@ -14,6 +14,7 @@ class TokenType(Enum):
CLOSE_ANGLE = '>'
SEMICOLON = ';'
ASTERISK = '*'
PERCENT = '%'
ASSIGN = '='
ARROW = '->'
COMMA = ','
@@ -44,7 +45,6 @@ class TokenType(Enum):
AS = 'as'
IDENTIFIER = 'identifier'
COMMENT = 'comment'
PERCENT = 'percent'
@property
def key(self):