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 640e45a commit d9c0511Copy full SHA for d9c0511
src/main/java/org/truffleruby/language/RubyRootNode.java
@@ -123,6 +123,7 @@ public synchronized void invalidateNeedsStorageAssumption() {
123
public Node copy() {
124
RubyRootNode root = (RubyRootNode) super.copy();
125
root.needsCallerAssumption = new CyclicAssumption("needs caller frame");
126
+ root.needsStorageAssumption = new CyclicAssumption("needs caller special variables");
127
return root;
128
}
129
0 commit comments