@@ -189,8 +189,8 @@ class PrimitivesVisitor(Visitor):
v = tree.get_text()[1:]
else:
v = tree.get_text()
- #TODO does this work for actions?
- n = self.value(v)
+ #NOTE Wrap this in an Action, even though it might not be an action: this has to be seen directly in the Mv without additional wrapping
+ n = self.value(Action(v))
self.dict(c, "node", n)
self.debug(c, tree)
@@ -52,7 +52,6 @@ class ModelverseKernel(object):
("RV", [phase]),
("RV", [inst]),
]
- print(inst_v)
if self.new_debug is not None:
self.debug_info, = yield [("RV", [self.new_debug])]