-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnode.py
More file actions
501 lines (380 loc) · 11.9 KB
/
node.py
File metadata and controls
501 lines (380 loc) · 11.9 KB
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
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
import json
class Node(object):
def __init__(self, t, *args):
self.type = t
self.args = args
def __str__(self):
s = "type: " + str(self.type) + "\n"
s += "".join(["i: " + str(i) + "\n" for i in self.args])
return s
##############################################################################
class Program:
def __init__(self, global_vars, functions):
self.global_vars = global_vars
self.functions = functions
def to_dict(self):
return {
"nt": "program",
"global_vars": [var.to_dict() for var in self.global_vars],
"functions": [func.to_dict() for func in self.functions]
}
def __str__(self):
return str(self.to_dict())
def to_json(self):
return json.dumps(self.to_dict(), indent=4)
class Body:
def __init__(self, statement_list):
self.statement_list = statement_list
def to_dict(self):
return {
"nt": "body",
"statement_list": [stmt.to_dict() for stmt in self.statement_list]
}
def __str__(self):
return str(self.to_dict())
class If:
def __init__(self, condition, if_body, else_body=None):
self.condition = condition
self.if_body = if_body
self.else_body = else_body
def to_dict(self):
if_body_dict = [stmt.to_dict() for stmt in self.if_body] if self.if_body is not None and self.if_body != [None] else "None"
else_body_dict = self.else_body.to_dict() if isinstance(self.else_body, Else) else "None"
return {
"nt": "if",
"condition": self.condition.to_dict(),
"if": if_body_dict,
"else": else_body_dict
}
def __str__(self):
return str(self.to_dict())
class Else:
def __init__(self, body):
self.body = body
def to_dict(self):
return [stmt.to_dict() for stmt in self.body] if self.body is not None and self.body != [None] else "None"
def __str__(self):
return str(self.to_dict())
class WhileStatement:
def __init__(self, condition, body):
self.condition = condition
self.body = body
def to_dict(self):
return {
"nt": "while",
"condition": self.condition.to_dict(),
"body": [stmt.to_dict() for stmt in self.body] if self.body is not None and self.body != [None] else "None"
}
def __str__(self):
return str(self.to_dict())
class FunctionDecl:
def __init__(self, name, parameters, type, body=None):
self.name = name.name
self.parameters = parameters if parameters is not None else "None"
self.type = type.to_dict() if type is not None else "None"
self.body = body if body is not None else "None"
def to_dict(self):
return {
"nt": "functiondecl",
"name": self.name,
"parameters": [prmt.to_dict() for prmt in self.parameters] if self.parameters != "None" else "None",
"type": self.type if self.type != "None" else "None",
"body": [stmt.to_dict() for stmt in self.body] if self.body != "None" and self.body != [None] else "None"
}
def __str__(self):
return str(self.to_dict())
class VariableDecl:
def __init__(self, modifier, name, type, initializer):
self.modifier = modifier
self.name = name.name
self.type = type.to_dict()
self.initializer = initializer.to_dict()
def to_dict(self):
return {
"nt": "vardecl",
"modifier": self.modifier,
"name": self.name,
"type": self.type,
"initializer": self.initializer
}
def __str__(self):
return str(self.to_dict())
class Assignment:
def __init__(self, name, expression):
self.name = name
self.expression = expression
def to_dict(self):
return {
"nt": "assignment",
"name": self.name.to_dict(),
"expression": self.expression.to_dict()
}
def __str__(self):
return str(self.to_dict())
#class BinaryOp:
# def __init__(self, sign, left, right):
# self.sign = sign.to_dict()
# self.left = left.to_dict()
# self.right = right.to_dict()
#
# def to_dict(self):
# return {
# "operator": self.sign,
# "left": self.left.to_dict() if isinstance(self.left, Node) else self.left,
# "right": self.right.to_dict() if isinstance(self.right, Node) else self.right
# }
#
# def __str__(self):
# return str(self.to_dict())
#
#class UnaryOp:
# def __init__(self, operator, expr):
# self.operator = operator.to_dict()
# self.expr = expr.to_dict()
#
# def to_dict(self):
# return {
# "operator": self.operator,
# "expr": self.expr.to_dict() if isinstance(self.expr, Node) else self.expr,
# }
#
# def __str__(self):
# return str(self.to_dict())
class ArrayCallInline:
def __init__(self, name, first_index, second_index=None):
self.name = name.name
self.first_index = first_index
self.second_index = second_index
def to_dict(self):
if self.second_index is not None:
return {
"nt": "arraycallinline",
"name": self.name,
"first_index": self.first_index.to_dict(),
"second_index": self.second_index.to_dict()
}
else:
return {
"nt": "arraycallinline",
"name": self.name,
"first_index": self.first_index.to_dict()
}
def __str__(self):
return str(self.to_dict())
class Type:
def __init__(self, typename):
self.typename = typename
def to_dict(self):
return self.typename
def __str__(self):
return str(self.to_dict())
class ArrayType:
def __init__(self, typename):
self.typename = typename.typename
def to_dict(self):
return "array" + self.typename
def __str__(self):
return str(self.to_dict())
class ArrayType2:
def __init__(self, typename):
self.typename = typename.typename
def to_dict(self):
return "array" + self.typename + "2"
def __str__(self):
return str(self.to_dict())
class Name:
def __init__(self, name):
self.name = name
def to_dict(self):
return self.name
def __str__(self):
return str(self.to_dict())
class Int:
def __init__(self, value):
self.value = value
def to_dict(self):
return {
"nt": "int",
"value": self.value
}
def __str__(self):
return str(self.to_dict())
class Array:
def __init__(self, value):
self.value = value
def to_dict(self):
return {
"nt": "array",
"value": self.value
}
def __str__(self):
return str(self.to_dict())
class Void:
def __init__(self, value):
self.value = value
def to_dict(self):
return {
"nt": "void",
"value": self.value
}
def __str__(self):
return str(self.to_dict())
class Char:
def __init__(self, value):
self.value = value
def to_dict(self):
return {
"nt": "char",
"value": self.value
}
def __str__(self):
return str(self.to_dict())
class String:
def __init__(self, value):
self.value = value
def to_dict(self):
return {
"nt": "string",
"value": self.value
}
def __str__(self):
return str(self.to_dict())
class Float:
def __init__(self, value):
self.value = value
def to_dict(self):
return {
"nt": "float",
"value": self.format_float_value()
}
def format_float_value(self):
if self.value.startswith('.'):
return '0' + self.value # Adiciona um zero à esquerda
else:
return self.value
def __str__(self):
return str(self.to_dict())
class Boolean:
def __init__(self, value):
self.value = value
def to_dict(self):
return {
"nt": "boolean",
"value": self.value
}
def __str__(self):
return str(self.to_dict())
class Parameter:
def __init__(self, modifier, name, type):
self.modifier = modifier
self.name = name.name
self.type = type.to_dict()
def to_dict(self):
return {
"modifier": self.modifier,
"name": self.name,
"type": self.type
}
def __str__(self):
return str(self.to_dict())
class ArgumentList:
def __init__(self, argument, argument_list):
self.argument = argument
self.argument_list = argument_list if argument_list is not None else []
def __str__(self):
return f"ArgumentList : ({self.argument}, {self.argument_list})"
class ParameterList:
def __init__(self, parameter, parameter_list):
self.parameter = parameter
self.parameter_list = parameter_list
def __str__(self):
return f"ParameterList : ({self.parameter}, {self.parameter_list})"
class FunctionCallInline:
def __init__(self, name, parameter_list):
self.name = name.name
self.parameter_list = parameter_list
def to_dict(self):
return {
"nt": "functioncallinline",
"name": self.name,
"parameter_list": [param.to_dict() for param in self.parameter_list] if self.parameter_list is not None else "None"
}
def __str__(self):
return str(self.to_dict())
class Value:
def __init__(self, value):
self.value = value
def to_dict(self):
return self.value.to_dict()
def __str__(self):
return str(self.to_dict())
class NotValue:
def __init__(self, value):
self.value = value
def to_dict(self):
return {
"nt": "notvalue",
"value": self.value.to_dict()
}
def __str__(self):
return str(self.to_dict())
class Parenteses:
def __init__(self, value):
self.value = value
def to_dict(self):
return {
"nt": "parenteses",
"value": self.value.to_dict()
}
def __str__(self):
return str(self.to_dict())
class Expression:
def __init__(self, operator, left, right):
self.operator = operator.to_dict()
self.left = left.to_dict()
self.right = right.to_dict()
def to_dict(self):
return {
"nt" : "expression",
"operator": self.operator,
"left": self.left.to_dict() if isinstance(self.left, Node) else self.left,
"right": self.right.to_dict() if isinstance(self.right, Node) else self.right
}
def __str__(self):
return str(self.to_dict())
class AndOr:
def __init__(self, operator):
self.operator = operator
def to_dict(self):
return self.operator
def __str__(self):
return str(self.to_dict())
class Sign:
def __init__(self, operator):
self.operator = operator
def to_dict(self):
return self.operator
def __str__(self):
return str(self.to_dict())
class Uminus:
def __init__(self, expression):
self.expression = expression
def to_dict(self):
return {
"nt": "uminus",
"expression": self.expression.to_dict()
}
def __str__(self):
return str(self.to_dict())
class Print:
def __init__(self, type, value):
self.type = type.split('_')[-1] # Obtém o último elemento após dividir a string pelo '_'
self.value = value
def __str__(self):
return str(self.to_dict())
def to_dict(self):
return {
"nt": "print",
"type": self.type,
"value": self.value.to_dict()
}