Skip to content
Snippets Groups Projects
Commit 41f4801e authored by Michael Haupt's avatar Michael Haupt
Browse files

fixed illegal recursion (missing redirection to inserted node)

parent 3d372e3e
No related branches found
No related tags found
No related merge requests found
......@@ -49,7 +49,7 @@ public abstract class Prod extends RBuiltinNode {
prodRecursive = insert(ProdFactory.create(new RNode[1], getBuiltin(), getSuppliedArgsNames()));
}
// TODO: evantually handle multiple vectors properly
return executeObject(frame, args.getValues()[0]);
return prodRecursive.executeObject(frame, args.getValues()[0]);
}
@Specialization
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment