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.
29 lines
486 B
29 lines
486 B
lexer grammar t038lexerRuleLabel;
|
|
options {
|
|
language = Python3;
|
|
}
|
|
|
|
A: 'a'..'z' WS '0'..'9'
|
|
{
|
|
print($WS)
|
|
print($WS.type)
|
|
print($WS.line)
|
|
print($WS.pos)
|
|
print($WS.channel)
|
|
print($WS.index)
|
|
print($WS.text)
|
|
}
|
|
;
|
|
|
|
fragment WS :
|
|
( ' '
|
|
| '\t'
|
|
| ( '\n'
|
|
| '\r\n'
|
|
| '\r'
|
|
)
|
|
)+
|
|
{ $channel = HIDDEN }
|
|
;
|
|
|