Skip to content

Commit

Permalink
Fixes #34 - Add tokenizing false keyword
Browse files Browse the repository at this point in the history
  • Loading branch information
mnriem committed May 6, 2024
1 parent 1de004a commit d561814
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lexer/src/main/antlr4/BengalLexer.g4
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ KEYWORD_IF : 'if';
KEYWORD_NEW : 'new';
KEYWORD_DELETE : 'delete';
KEYWORD_TRUE : 'true';
KEYWORD_FALSE : 'false';

LEFT_CURLY : '{';
RIGHT_CURLY : '}';
Expand All @@ -13,4 +14,3 @@ DOT : '.';
LEFT_PARENTHESIS : '(';
RIGHT_PARENTHESIS : ')';
ASSIGNMENT_OPERATOR : '=';

0 comments on commit d561814

Please sign in to comment.