-
Notifications
You must be signed in to change notification settings - Fork 0
/
Xpln.g4
174 lines (148 loc) · 2.64 KB
/
Xpln.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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
/*
* Grammar for Xpln
*/
grammar Xpln;
/* start symbol */
file_input
: entry* EOF
;
entry
: (stmt | funcdef) SCOL
;
stmt
: assn_stmt
| if_stmt
| while_stmt
| return_stmt
| io_stmt
;
block_stmt
: (stmt SCOL)*
;
funcdef
: K_FUN ID arglist block_stmt K_ENDF
;
assn_stmt
: ID ASSIGN expr
;
if_stmt
: K_IF cond_expr block_stmt else_block? K_ENDI
;
else_block
: K_ELSE block_stmt
;
while_stmt
: K_WHILE cond_expr block_stmt K_ENDW
;
return_stmt
: K_RETURN expr
;
io_stmt
: (K_INPUT | K_OUTPUT) ID
;
expr
: expr (PLUS | MINUS) term
| term
;
term
: term (TIMES | DIV) factor
| factor
;
factor
: OPEN_PAR expr CLOSE_PAR
| funccall
| ID
| NUM
;
funccall
: ID arglist_call
;
cond_expr
: OPEN_PAR cond_expr CLOSE_PAR # CondExprParen
| NOT cond_expr # CondExprLogicalNot
| left=cond_expr op=K_AND right=cond_expr # CondExprLogicalAnd
| left=cond_expr op=K_OR right=cond_expr # CondExprLogicalOr
| left=expr op=comp_op right=expr # CondExprArithmetic
;
arglist
: OPEN_PAR (ID (COMMA ID)*)? CLOSE_PAR
;
arglist_call
: OPEN_PAR (expr (COMMA expr)*)? CLOSE_PAR
;
comp_op
: LT
| LT_EQ
| EQ
| GT_EQ
| GT
;
/* symbols */
SCOL : ';';
DOT : '.';
OPEN_PAR : '(';
CLOSE_PAR : ')';
COMMA : ',';
ASSIGN : ':=';
PLUS : '+';
MINUS : '-';
TIMES : '*';
DIV : '/';
LT : '<';
LT_EQ : '<=';
EQ : '==';
GT_EQ : '>=';
GT : '>';
NOT : '!';
/* keywords, case-insensitive */
K_FUN : F U N;
K_ENDF : E N D F;
K_WHILE : W H I L E;
K_ENDW : E N D W;
K_IF : I F;
K_ELSE : E L S E;
K_ENDI : E N D I;
K_RETURN : R E T U R N;
K_AND : A N D;
K_OR : O R;
K_INPUT : I N P U T;
K_OUTPUT : O U T P U T;
/* general lexical rules */
ID : [a-zA-Z]+;
NUM : INT | FLOAT;
INT : DIGIT+;
FLOAT : DIGIT* DOT DIGIT*;
/* miscellaneous lexical rules */
WS : [ \t\n\r]+ -> skip;
fragment DIGIT
: [0-9]
;
/* required for case-insensitive lexing,
* see https://github.com/antlr/antlr4/blob/master/doc/case-insensitive-lexing.md
*/
fragment A : [Aa];
fragment B : [Bb];
fragment C : [Cc];
fragment D : [Dd];
fragment E : [Ee];
fragment F : [Ff];
fragment G : [Gg];
fragment H : [Hh];
fragment I : [Ii];
fragment J : [Jj];
fragment K : [Kk];
fragment L : [Ll];
fragment M : [Mm];
fragment N : [Nn];
fragment O : [Oo];
fragment P : [Pp];
fragment Q : [Qq];
fragment R : [Rr];
fragment S : [Ss];
fragment T : [Tt];
fragment U : [Uu];
fragment V : [Vv];
fragment W : [Ww];
fragment X : [Xx];
fragment Y : [Yy];
fragment Z : [Zz];