Fixing append

This commit is contained in:
Anthony Debucquoy 2025-03-20 13:33:23 +01:00
parent 5d21e611f0
commit 76e2707156
Signed by: tonitch
GPG Key ID: A78D6421F083D42E

6
spf.py
View File

@ -29,8 +29,10 @@ class SPFInterpreter(lark.visitors.Interpreter):
ligne += str(self.visit_children(toprint)[0]) + " "
print(ligne)
# def append(self, el):
# (_, toadd, var) = self.visit_children(el);
def append(self, el):
(_, toadd, var) = self.visit_children(el);
var_val = self.variables.get(var.value)
var_val.append(toadd)
def declaration(self, el):
type = el.children[0].value