blob: 5a0a35ed3722199c43734b91c4c96f2d7511fe67 [file] [log] [blame]
grammar t034tokenLabelPropertyRef;
options {
language = Python3;
}
a: t=A
{
print($t.text)
print($t.type)
print($t.line)
print($t.pos)
print($t.channel)
print($t.index)
#print($t.tree)
}
;
A: 'a'..'z';
WS :
( ' '
| '\t'
| ( '\n'
| '\r\n'
| '\r'
)
)+
{ $channel = HIDDEN }
;