blob: de7d46ed484abd87b09947f7011c34c5514bd8fa [file] [log] [blame]
grammar t031emptyAlt;
options {
language = Python3;
}
r
: NAME
( {self.cond}?=> WS+ NAME
|
)
EOF
;
NAME: ('a'..'z') ('a'..'z' | '0'..'9')+;
NUMBER: ('0'..'9')+;
WS: ' '+;