Skip to content
Snippets Groups Projects
Commit f11bbd32 authored by Mick Jordan's avatar Mick Jordan
Browse files

remove debugging code

parent 78a0ed15
Branches
No related tags found
No related merge requests found
...@@ -74,9 +74,6 @@ public abstract class Internal extends RBuiltinNode { ...@@ -74,9 +74,6 @@ public abstract class Internal extends RBuiltinNode {
// .Internal function is validated // .Internal function is validated
CompilerDirectives.transferToInterpreterAndInvalidate(); CompilerDirectives.transferToInterpreterAndInvalidate();
// Replace the original call; we can't just use callNode as that will cause recursion! // Replace the original call; we can't just use callNode as that will cause recursion!
if (symbol.getName().equals("paste")) {
System.console();
}
RCallNode internalCallNode = RCallNode.createInternalCall(frame, this.getParent().getSourceSection(), callNode, function, symbol); RCallNode internalCallNode = RCallNode.createInternalCall(frame, this.getParent().getSourceSection(), callNode, function, symbol);
this.getParent().replace(internalCallNode); this.getParent().replace(internalCallNode);
// evaluate the actual builtin this time, next time we won't get here! // evaluate the actual builtin this time, next time we won't get here!
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment