Skip to content

Commit

Permalink
Fixed typo in ANTLR token name
Browse files Browse the repository at this point in the history
Signed-off-by: Thomas Calmant <thomas.calmant@gmail.com>
  • Loading branch information
tcalmant committed Feb 16, 2024
1 parent f824457 commit c769a42
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ EQUAL: '=';

DOT: '.';
STAR: '*';
UNDERCORE: '_';
UNDERSCORE: '_';
PLUS: '+';
MINUS: '-';
COLUMN: ':';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ escaped_quote: ESCAPE_CHAR QUOTE;
escaped_escape: ESCAPE_CHAR ESCAPE_CHAR;
alpha: HEX_ALPHA | OTHER_ALPHA;

valid_attr: (STAR | (alpha | DIGIT | UNDERCORE)+) (
valid_attr: (STAR | (alpha | DIGIT | UNDERSCORE)+) (
alpha
| DIGIT
| MINUS
| UNDERCORE
| UNDERSCORE
| COLUMN
)*;
number: DIGIT+;
Expand Down Expand Up @@ -63,7 +63,7 @@ pureString: (
| DOT
| OR
| AND
| UNDERCORE
| UNDERSCORE
| MINUS
| PLUS
| comparator
Expand Down

0 comments on commit c769a42

Please sign in to comment.