Skip to content

Commit

Permalink
Fixes #25 - Add tokenizing right curly brace
Browse files Browse the repository at this point in the history
  • Loading branch information
mnriem committed Apr 22, 2024
1 parent d0955b5 commit d805fad
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 17 deletions.
17 changes: 0 additions & 17 deletions lexer/src/main/antlr4/Bengal.g4

This file was deleted.

8 changes: 8 additions & 0 deletions lexer/src/main/antlr4/BengalLexer.g4
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
lexer grammar BengalLexer;

KEYWORD_CLASS : 'class';
KEYWORD_IF : 'if';

LEFT_CURLY : '{';
RIGHT_CURLY : '}';

0 comments on commit d805fad

Please sign in to comment.