-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathLatte.g4
150 lines (126 loc) · 3.21 KB
/
Latte.g4
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
grammar Latte;
program
: topDef+
;
topDef
: functionDef # DFun
| classDef # DClass
;
classDef
: 'class' ID ('extends' ID)? '{' memberDef* '}'
;
memberDef
: ';' # MEmpty
| memberVariables # MVar
| memberFunction # MFun
;
memberVariables
: anyType ID ( ',' ID )* ';'
;
memberFunction
: functionDef
;
functionDef
: anyType ID '(' args? ')' block
;
args
: anyType ID ( ',' anyType ID )*
;
block
: '{' stmt* '}'
;
stmt
: ';' # SEmpty
| block # SBlock
| anyType item ( ',' item )* ';' # SDecl
| value '=' expr ';' # SAss
| value '++' ';' # SIncr
| value '--' ';' # SDecr
| 'return' expr ';' # SRetValue
| 'return' ';' # SRetVoid
| 'if' '(' expr ')' stmt # SCond
| 'if' '(' expr ')' stmt 'else' stmt # SCondElse
| 'while' '(' expr ')' stmt # SWhile
| 'for' '(' basicType ID ':' expr ')' stmt # SFor
| expr ';' # SExp
;
value
: 'self' # VSelf
| ID # VID
| value '.' ID # VMem
| value '[' expr ']' # VArr
;
anyType
: basicType # TBasic
| basicType '[' ']' # TArr
;
basicType
: 'int' # TInt
| 'string' # TStr
| 'boolean' # TBool
| 'void' # TVoid
| ID # TClass
;
item
: ID ('=' expr)?
;
expr
: unOp expr # EUnOp
| expr mulOp expr # EMulOp
| expr addOp expr # EAddOp
| expr relOp expr # ERelOp
| <assoc=right> expr '&&' expr # EAnd
| <assoc=right> expr '||' expr # EOr
| value # EVal
| INT # EInt
| 'true' # ETrue
| 'false' # EFalse
| STR # EStr
| 'new' basicType # ENew
| 'new' basicType '[' expr ']' # ENewArr
| '(' ID ')' 'null' # ENull
| value '(' ( expr ( ',' expr )* )? ')' # EFunCall
| '(' expr ')' # EParen
;
unOp
: '-'
| '!'
;
addOp
: '+'
| '-'
;
mulOp
: '*'
| '/'
| '%'
;
relOp
: '=='
| '!='
| '<'
| '<='
| '>'
| '>='
;
COMMENT : ('#' ~[\r\n]* | '//' ~[\r\n]*) -> channel(HIDDEN);
MULTICOMMENT : '/*' .*? '*/' -> channel(HIDDEN);
fragment Letter : Capital | Small ;
fragment Capital : [A-Z\u00C0-\u00D6\u00D8-\u00DE] ;
fragment Small : [a-z\u00DF-\u00F6\u00F8-\u00FF] ;
fragment Digit : [0-9] ;
INT : Digit+ ;
fragment ID_First : Letter | '_';
ID : ID_First (ID_First | Digit)* ;
WS : (' ' | '\r' | '\t' | '\n')+ -> skip;
STR
: '"' StringCharacters? '"'
;
fragment StringCharacters
: StringCharacter+
;
fragment
StringCharacter
: ~["\\]
| '\\' [tnr"\\]
;