You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
619 B

grammar t021hoist;
options {
language=JavaScript;
}
/* With this true, enum is seen as a keyword. False, it's an identifier */
@members {
this.enableEnum = false;
}
stat returns [enumIs]
: identifier {enumIs = "ID"}
| enumAsKeyword {enumIs = "keyword"}
;
identifier
: ID
| enumAsID
;
enumAsKeyword : {this.enableEnum}? 'enum' ;
enumAsID : {!this.enableEnum}? 'enum' ;
ID : ('a'..'z'|'A'..'Z'|'_') ('a'..'z'|'A'..'Z'|'0'..'9'|'_')*
;
INT : ('0'..'9')+
;
WS : ( ' '
| '\t'
| '\r'
| '\n'
)+
{$channel=HIDDEN;}
;