blob: 02e69b1a30a4415d3e058c88e259c4c000f31d35 [file] [log] [blame]
Ben Gruver324c4642011-11-15 16:02:09 -08001grammar 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 ;