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.
|
lexer grammar IDLexer;
|
|
options { language = Perl5; }
|
|
|
|
ID : ('a'..'z'|'A'..'Z')+ ;
|
|
INT : '0'..'9'+ ;
|
|
NEWLINE:'\r'? '\n' { $self->skip(); } ;
|
|
WS : (' '|'\t')+ { $channel = HIDDEN; } ;
|