We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a48593d commit 6acbe1eCopy full SHA for 6acbe1e
src/main/java/org/piccode/ast/PipeAst.java
@@ -73,7 +73,7 @@ public PiccodeValue execute(Integer frame) {
73
74
var call = (CallAst) rhs;
75
call.nodes.forEach(node -> newArgs.addLast(node));
76
- var _call = new CallAst(call, newArgs);
+ var _call = new CallAst(call.expr, newArgs);
77
return _call.execute(frame);
78
});
79
}
0 commit comments