File tree Expand file tree Collapse file tree 2 files changed +0
-3
lines changed
Expand file tree Collapse file tree 2 files changed +0
-3
lines changed Original file line number Diff line number Diff line change @@ -102,7 +102,6 @@ class Parser:
102102 TokenType .GE : PRECEDENCE_RELATIONAL ,
103103 TokenType .GT : PRECEDENCE_RELATIONAL ,
104104 TokenType .LE : PRECEDENCE_RELATIONAL ,
105- TokenType .LG : PRECEDENCE_RELATIONAL ,
106105 TokenType .LT : PRECEDENCE_RELATIONAL ,
107106 TokenType .NE : PRECEDENCE_RELATIONAL ,
108107 TokenType .NOT : PRECEDENCE_PREFIX ,
@@ -117,7 +116,6 @@ class Parser:
117116 TokenType .GE : ">=" ,
118117 TokenType .GT : ">" ,
119118 TokenType .LE : "<=" ,
120- TokenType .LG : "<>" ,
121119 TokenType .LT : "<" ,
122120 TokenType .NE : "!=" ,
123121 TokenType .OR : "||" ,
Original file line number Diff line number Diff line change @@ -48,7 +48,6 @@ class TokenType(Enum):
4848 GT = auto ()
4949 INT = auto ()
5050 LE = auto ()
51- LG = auto ()
5251 LPAREN = auto ()
5352 LT = auto ()
5453 NE = auto ()
You can’t perform that action at this time.
0 commit comments