forked from antlr/examples-v3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathT.g
50 lines (39 loc) · 1.25 KB
/
T.g
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
grammar T;
options {
language=Python;
}
program : method ;
method
/* name is visible to any rule called by method directly or indirectly.
* There is also a stack of these names, one slot for each nested
* invocation of method. If you have a method nested within another
* method then you have name strings on the stack. Referencing
* $method.name access the topmost always. I have no way at the moment
* to access earlier elements on the stack.
*/
scope {
name
}
: 'method' ID '(' ')' {$method::name=$ID.text;} body
;
body: '{' stat* '}'
;
stat: ID '=' expr ';'
| method // allow nested methods to demo stack nature of dynamic attributes
;
expr: mul ('+' mul)*
;
mul : atom ('*' atom)*
;
/** Demonstrate that 'name' is a dynamically-scoped attribute defined
* within rule method. With lexical-scoping (variables go away at
* the end of the '}'), you'd have to pass the current method name
* down through all rules as a parameter. Ick. This is much much better.
*/
atom: ID {print "ref "+$ID.text+" from method "+$method::name}
| INT {print "int "+$INT.text+" in method "+$method::name}
;
ID : ('a'..'z'|'A'..'Z')+ ;
INT : '0'..'9'+ ;
WS : (' '|'\t'|'\n')+ {$channel=HIDDEN}
;