|
@@ -520,9 +520,6 @@ String function spawn(function : Element, arguments : Element):
|
|
|
// Additionally, we copy over all globals that we previously had
|
|
|
dict_add_fast(task_root, "globals", dict_copy(root[get_taskname()]["globals"]))
|
|
|
|
|
|
- log("Setting IP to " + cast_value(function["body"]))
|
|
|
- log("Has outputs: " + set_to_string(dict_keys(function)))
|
|
|
-
|
|
|
if (dict_in(function, "params")):
|
|
|
// And add the arguments to the symbol table
|
|
|
Element symbols
|
|
@@ -542,7 +539,6 @@ String function spawn(function : Element, arguments : Element):
|
|
|
dict_add(entry, "value", list_pop(arguments, 0))
|
|
|
t = create_edge(symbols, entry)
|
|
|
create_edge(t, param_dict[string_get(arg_names_call, arg_i)])
|
|
|
- log("Adding to symbols: " + cast_value(string_get(arg_names_call, arg_i)))
|
|
|
arg_i = arg_i + 1
|
|
|
|
|
|
// Add this only at the end, as otherwise the task will already be detected and executed
|