Skip to content

Commit

Permalink
fix(#3629): grammar
Browse files Browse the repository at this point in the history
  • Loading branch information
maxonfjvipon committed Dec 10, 2024
1 parent 38b29a7 commit dfab3a6
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions eo-parser/src/main/antlr4/org/eolang/parser/Eo.g4
Original file line number Diff line number Diff line change
Expand Up @@ -683,11 +683,7 @@ fragment ZERO
: '0'
;
INT : (PLUS | MINUS)? INT_POSITIVE
;
INT_POSITIVE
: (ZERO | ZERO?[1-9][0-9]*)
INT : (PLUS | MINUS)? (ZERO | ZERO?[1-9][0-9]*)
;
fragment EXPONENT
Expand Down

0 comments on commit dfab3a6

Please sign in to comment.