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

fix TruffleBoundary/VirtualFrame

parent dd5da7fd
No related branches found
No related tags found
No related merge requests found
......@@ -170,9 +170,13 @@ public abstract class S3DispatchNode extends DispatchNode {
return wvnCopy;
}
@TruffleBoundary
private static void addVar(VirtualFrame frame, final String varName) {
findOrAddFrameSlot(frame.getFrameDescriptor(), varName);
addVarHelper(frame.getFrameDescriptor(), varName);
}
@TruffleBoundary
private static void addVarHelper(FrameDescriptor frameDescriptor, final String varName) {
findOrAddFrameSlot(frameDescriptor, varName);
}
protected void defineVarsInFrame(VirtualFrame frame) {
......
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