Files
2023-10-13 14:01:41 +00:00

19 lines
231 B
Plaintext
Executable File

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