-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAST.py
396 lines (315 loc) · 11.1 KB
/
AST.py
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
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
from abc import ABC, abstractmethod
from enum import Enum
class NodeType(Enum):
Program = "Program"
# Statements
ExpressionStatement = "ExpressionStatement"
LetStatement = "LetStatement"
FunctionStatement = "FunctionStatement"
BlockStatement = "BlockStatement"
ReturnStatement = "ReturnStatement"
AssignStatement = "AssignStatement"
IfStatement = "IfStatement"
WhileStatement = "WhileStatement"
BreakStatement = "BreakStatement"
ContinueStatement = "ContinueStatement"
ForStatement = "ForStatement"
ImportStatement = "ImportStatement"
# Expressions
InfixExpression = "InfixExpression"
CallExpression = "CallExpression"
PrefixExpression = "PrefixExpression"
PostfixExpression = "PostfixExpression"
DotExpression = "DotExpression"
# Literals
IntegerLiteral = "IntegerLiteral"
FloatLiteral = "FloatLiteral"
IdentifierLiteral = "IdentifierLiteral"
BooleanLiteral = "BooleanLiteral"
StringLiteral = "StringLiteral"
# Helper
FunctionParameter = "FunctionParameter"
class Node(ABC):
@abstractmethod
def type(self) -> NodeType:
""" Returns back the NodeType """
pass
@abstractmethod
def json(self) -> dict:
""" Returns back the JSON representation of this AST node """
pass
class Statement(Node):
pass
class Expression(Node):
pass
class Program(Node):
""" The root node for the AST """
def __init__(self) -> None:
self.statements: list[Statement] = []
def type(self) -> NodeType:
return NodeType.Program
def json(self) -> dict:
return {
"type": self.type().value,
"statements": [{stmt.type().value: stmt.json()} for stmt in self.statements]
}
# region Helpers
class FunctionParameter(Expression):
def __init__(self, name: str, value_type: str = None) -> None:
self.name = name
self.value_type = value_type
def type(self) -> NodeType:
return NodeType.FunctionParameter
def json(self) -> dict:
return {
"type": self.type().value,
"name": self.name,
"value_type": self.value_type
}
# region Statements
class ExpressionStatement(Statement):
def __init__(self, expr: Expression = None) -> None:
self.expr: Expression = expr
def type(self) -> NodeType:
return NodeType.ExpressionStatement
def json(self) -> dict:
return {
"type": self.type().value,
"expr": self.expr.json()
}
class LetStatement(Statement):
def __init__(self, name: Expression = None, value: Expression = None, value_type: str = None) -> None:
self.name = name
self.value = value
self.value_type = value_type
def type(self) -> NodeType:
return NodeType.LetStatement
def json(self) -> dict:
return {
"type": self.type().value,
"name": self.name.json(),
"value": self.value.json(),
"value_type": self.value_type
}
class BlockStatement(Statement):
def __init__(self, statements: list[Statement] = None) -> None:
self.statements = statements if statements is not None else []
def type(self) -> NodeType:
return NodeType.BlockStatement
def json(self) -> dict:
return {
"type": self.type().value,
"statements": [stmt.json() for stmt in self.statements]
}
class ReturnStatement(Statement):
def __init__(self, return_value: Expression = None) -> None:
self.return_value = return_value
def type(self) -> NodeType:
return NodeType.ReturnStatement
def json(self) -> dict:
return {
"type": self.type().value,
"return_value": self.return_value.json()
}
class FunctionStatement(Statement):
def __init__(self, parameters: list[FunctionParameter] = [], body: BlockStatement = None, name = None, return_type: str = None) -> None:
self.parameters = parameters
self.body = body
self.name = name
self.return_type = return_type
def type(self) -> NodeType:
return NodeType.FunctionStatement
def json(self) -> dict:
return {
"type": self.type().value,
"name": self.name.json(),
"return_type": self.return_type,
"parameters": [p.json() for p in self.parameters],
"body": self.body.json()
}
class AssignStatement(Statement):
def __init__(self, ident: Expression = None, operator: str = None, right_value: Expression = None) -> None:
self.ident = ident
self.operator = operator
self.right_value = right_value
def type(self) -> NodeType:
return NodeType.AssignStatement
def json(self) -> dict:
return {
"type": self.type().value,
"ident": self.ident.json(),
"operator": self.operator,
"right_value": self.right_value.json()
}
class IfStatement(Statement):
def __init__(self, condition: Expression = None, consequence: BlockStatement = None, alternative: BlockStatement = None) -> None:
self.condition = condition
self.consequence = consequence
self.alternative = alternative
def type(self) -> NodeType:
return NodeType.IfStatement
def json(self) -> dict:
return {
"type": self.type().value,
"condition": self.condition.json(),
"consequence": self.consequence.json(),
"alternative": self.alternative.json() if self.alternative is not None else None
}
class WhileStatement(Statement):
def __init__(self, condition: Expression, body: BlockStatement = None) -> None:
self.condition = condition
self.body = body if body is not None else []
def type(self) -> NodeType:
return NodeType.WhileStatement
def json(self) -> dict:
return {
"type": self.type().value,
"condition": self.condition.json(),
"body": self.body.json()
}
class BreakStatement(Statement):
def __init__(self) -> None:
pass
def type(self) -> NodeType:
return NodeType.BreakStatement
def json(self) -> dict:
return {
"type": self.type().value
}
class ContinueStatement(Statement):
def __init__(self) -> None:
pass
def type(self) -> NodeType:
return NodeType.ContinueStatement
def json(self) -> dict:
return {
"type": self.type().value
}
class ForStatement(Statement):
def __init__(self, var_declaration: LetStatement = None, condition: Expression = None, action: AssignStatement = None, body: BlockStatement = None) -> None:
self.var_declaration = var_declaration
self.condition = condition
self.action = action
self.body = body
def type(self) -> NodeType:
return NodeType.ForStatement
def json(self) -> dict:
return {
"type": self.type().value,
"var_declaration": self.var_declaration.json(),
"condition": self.condition.json(),
"action": self.action.json(),
"body": self.body.json()
}
class ImportStatement(Statement):
def __init__(self, file_path: str) -> None:
self.file_path = file_path
def type(self) -> NodeType:
return NodeType.ImportStatement
def json(self) -> dict:
return {
"type": self.type().value,
"file_path": self.file_path
}
# region Expressions
class InfixExpression(Expression):
def __init__(self, left_node: Expression, operator: str, right_node: Expression = None):
self.left_node: Expression = left_node
self.operator: str = operator
self.right_node: Expression = right_node
def type(self) -> NodeType:
return NodeType.InfixExpression
def json(self) -> dict:
return {
"type": self.type().value,
"left_node": self.left_node.json(),
"operator": self.operator,
"right_node": self.right_node.json()
}
class CallExpression(Expression):
def __init__(self, function: Expression = None, arguments: list[Expression] = None) -> None:
self.function = function # IdentifierLiteral
self.arguments = arguments
def type(self) -> NodeType:
return NodeType.CallExpression
def json(self) -> dict:
return {
"type": self.type().value,
"function": self.function.json(),
"arguments": [arg.json() for arg in self.arguments]
}
class PrefixExpression(Expression):
def __init__(self, operator: str, right_node: Expression = None) -> None:
self.operator = operator
self.right_node = right_node
def type(self) -> NodeType:
return NodeType.PrefixExpression
def json(self) -> dict:
return {
"type": self.type().value,
"operator": self.operator,
"right_node": self.right_node.json()
}
class PostfixExpression(Expression):
def __init__(self, left_node: Expression, operator: str) -> None:
self.left_node = left_node
self.operator = operator
def type(self) -> NodeType:
return NodeType.PostfixExpression
def json(self) -> dict:
return {
"type": self.type().value,
"left_node": self.left_node.json(),
"operator": self.operator
}
# region Literals
class IntegerLiteral(Expression):
def __init__(self, value: int = None) -> None:
self.value: int = value
def type(self) -> NodeType:
return NodeType.IntegerLiteral
def json(self) -> dict:
return {
"type": self.type().value,
"value": self.value
}
class FloatLiteral(Expression):
def __init__(self, value: float = None) -> None:
self.value: float = value
def type(self) -> NodeType:
return NodeType.FloatLiteral
def json(self) -> dict:
return {
"type": self.type().value,
"value": self.value
}
class IdentifierLiteral(Expression):
def __init__(self, value: str = None) -> None:
self.value: str = value
def type(self) -> NodeType:
return NodeType.IdentifierLiteral
def json(self) -> dict:
return {
"type": self.type().value,
"value": self.value
}
class BooleanLiteral(Expression):
def __init__(self, value: bool = None) -> None:
self.value: bool = value
def type(self) -> NodeType:
return NodeType.BooleanLiteral
def json(self) -> dict:
return {
"type": self.type().value,
"value": self.value
}
class StringLiteral(Expression):
def __init__(self, value: str = None) -> None:
self.value: str = value
def type(self) -> NodeType:
return NodeType.StringLiteral
def json(self) -> dict:
return {
"type": self.type().value,
"value": self.value
}