blob: 52e1ac6343e422af239f5bf859b9ea991e50376d [file] [log] [blame]
lexer grammar t025lexerRulePropertyRef;
options {
language = JavaScript;
}
@lexer::init {
this.properties = [];
}
IDENTIFIER:
('a'..'z'|'A'..'Z'|'_') ('a'..'z'|'A'..'Z'|'0'..'9'|'_')*
{
this.properties.push(
[$text, $type, $line, $pos, $index, $channel, $start, $stop]
);
}
;
WS: (' ' | '\n')+;