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