Skip to content

Commit

Permalink
Fix int options parsing in ANTLRv4Lexer.g4
Browse files Browse the repository at this point in the history
  • Loading branch information
AmatanHead committed Aug 19, 2018
1 parent 780bcc6 commit d217882
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion antlr4/ANTLRv4Lexer.PythonTarget.g4
Expand Up @@ -278,7 +278,7 @@ mode Options;
OPT_DOT : Dot -> type(DOT) ;
OPT_ASSIGN : Equal -> type(ASSIGN) ;
OPT_STRING_LITERAL : SQuoteLiteral -> type(STRING_LITERAL) ;
OPT_INT : Int -> type(INT) ;
OPT_INT : DecimalNumeral -> type(INT) ;
OPT_STAR : Star -> type(STAR) ;
OPT_SEMI : Semi -> type(SEMI) ;

Expand Down

0 comments on commit d217882

Please sign in to comment.