19 lines
231 B
Plaintext
Executable File
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;}
|
|
;
|