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