diff options
Diffstat (limited to 'compilador')
-rw-r--r-- | compilador/parse/expr.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/compilador/parse/expr.py b/compilador/parse/expr.py index fdd5ce1..14fcf0c 100644 --- a/compilador/parse/expr.py +++ b/compilador/parse/expr.py @@ -236,10 +236,7 @@ class ParseExpr: return ident return ReadExpr(expr = ident) - - - # WIP def plain_expression(self) -> (Expr | Error): tok: LexToken = self.parser.peek() if tok.tipo in [Token.BOOLEAN_LIT, Token.CHAR_LIT, Token.INT_LIT, Token.STRING_LIT]: |