blob: 02e69b1a30a4415d3e058c88e259c4c000f31d35 [file] [log] [blame]
grammar t023scopes;
options {
language=Python;
}
prog
scope {
name
}
: ID {$prog::name=$ID.text;}
;
ID : ('a'..'z')+
;
WS : (' '|'\n'|'\r')+ {$channel=HIDDEN}
;