android13/external/antlr/runtime/Python/tests/t023scopes.g

19 lines
193 B
Plaintext

grammar t023scopes;
options {
language=Python;
}
prog
scope {
name
}
: ID {$prog::name=$ID.text;}
;
ID : ('a'..'z')+
;
WS : (' '|'\n'|'\r')+ {$channel=HIDDEN}
;