|
@@ -486,7 +486,6 @@ def is_edge(a, **remainder):
|
|
|
|
|
|
#TODO deprecate
|
|
|
def deserialize(a, root, **remainder):
|
|
|
- print("DESERIALIZE")
|
|
|
value, = yield [("RV", [a])]
|
|
|
id_mappings = {}
|
|
|
complex_primitives = frozenset(["if", "while", "assign", "call", "break", "continue", "return","resolve","access", "constant", "input", "output", "declare", "global"])
|
|
@@ -503,8 +502,6 @@ def deserialize(a, root, **remainder):
|
|
|
name, temp = constructor.split("(", 1)
|
|
|
string_value = temp[:-1]
|
|
|
if string_value in complex_primitives:
|
|
|
- if string_value == "break":
|
|
|
- print("Deserialize break")
|
|
|
value = {"value": string_value}
|
|
|
else:
|
|
|
#TODO this is very dangerous!
|