blob: 2069db131445727611f03034543d45b1a5e408bc [file] [log] [blame]
grammar t037rulePropertyRef;
options {
language = Python3;
}
a returns [bla]
@after {
$bla = $start, $stop, $text
}
: A+
;
A: 'a'..'z';
WS: ' '+ { $channel = HIDDEN };