Skip to content

Commit 66e982f

Browse files
committed
Reapply "Fixed grammar"
This reverts commit d785934.
1 parent d785934 commit 66e982f

File tree

1 file changed

+1
-1
lines changed
  • liquidjava-verifier/src/main/antlr4/rj/grammar

1 file changed

+1
-1
lines changed

liquidjava-verifier/src/main/antlr4/rj/grammar/RJ.g4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,8 +97,8 @@ BOOLOP : '=='|'!='|'>='|'>'|'<='|'<';
9797
ARITHOP : '+'|'*'|'/'|'%';//|'-';
9898

9999
BOOL : 'true' | 'false';
100-
ENUM_CALL: [a-zA-Z_][a-zA-Z0-9_]* '.' [a-zA-Z_][a-zA-Z0-9_]*;
101100
ID_UPPER: ([A-Z][a-zA-Z0-9]*);
101+
ENUM_CALL: [A-Z][a-zA-Z0-9_]* '.' [A-Z][a-zA-Z0-9_]*;
102102
OBJECT_TYPE:
103103
(([a-zA-Z][a-zA-Z0-9]+) ('.' [a-zA-Z][a-zA-Z0-9]*)+);
104104
ID : '#'*[a-zA-Z_][a-zA-Z0-9_#]*;

0 commit comments

Comments
 (0)