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 d96ee38 commit 6e14eecCopy full SHA for 6e14eec
src/main/java/org/truffleruby/core/kernel/TruffleKernelNodes.java
@@ -193,7 +193,7 @@ public abstract static class GetSpecialVariableStorage extends RubyContextNode {
193
protected SpecialVariableStorage executeGetStorage(VirtualFrame frame,
194
@Cached("frame.getFrameDescriptor()") FrameDescriptor descriptor,
195
@Cached("descriptor.findFrameSlot(SPECIAL_VARIABLLE_STORAGE)") FrameSlot slot,
196
- @Cached("declarationDescriptor(frame).getVersion()") Assumption frameAssumption) {
+ @Cached("descriptor.getVersion()") Assumption frameAssumption) {
197
Object storage = FrameUtil.getObjectSafe(frame, slot);
198
if (storage == nil) {
199
CompilerDirectives.transferToInterpreterAndInvalidate();
0 commit comments