xref: /aosp_15_r20/external/antlr/runtime/Python/tests/t023scopes.g (revision 16467b971bd3e2009fad32dd79016f2c7e421deb)
1grammar t023scopes;
2
3options {
4    language=Python;
5}
6
7prog
8scope {
9name
10}
11    :   ID {$prog::name=$ID.text;}
12    ;
13
14ID  :   ('a'..'z')+
15    ;
16
17WS  :   (' '|'\n'|'\r')+ {$channel=HIDDEN}
18    ;
19