Skip to content

Commit 96accee

Browse files
committed
Remove mentioning in src/main/java/org/truffleruby/language/FrameAndVariablesSendingNode.java
1 parent 2cc143f commit 96accee

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/main/java/org/truffleruby/language/FrameAndVariablesSendingNode.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,17 @@
1212
import com.oracle.truffle.api.frame.Frame;
1313
import org.truffleruby.SuppressFBWarnings;
1414
import org.truffleruby.core.binding.RubyBinding;
15+
import org.truffleruby.core.inlined.AlwaysInlinedMethodNode;
1516
import org.truffleruby.core.kernel.TruffleKernelNodes.GetSpecialVariableStorage;
16-
import org.truffleruby.language.arguments.ReadCallerFrameNode;
1717
import org.truffleruby.language.arguments.ReadCallerVariablesNode;
1818

1919
import org.truffleruby.language.methods.DeclarationContext;
2020
import org.truffleruby.language.threadlocal.SpecialVariableStorage;
2121

2222
/** Some Ruby methods need access to the caller frame (the frame active when the method call was made) or to the storage
23-
* of special variables within that frame: see usages of {@link ReadCallerFrameNode} and {@link ReadCallerVariablesNode}
24-
* . This is notably used to get hold of instances of {@link DeclarationContext} and {@link RubyBinding} and methods
25-
* which need to access the last regexp MatchData or the last IO line.
23+
* of special variables within that frame: see usages of {@link AlwaysInlinedMethodNode} and
24+
* {@link ReadCallerVariablesNode}. This is notably used to get hold of instances of {@link DeclarationContext} and
25+
* {@link RubyBinding} and methods which need to access the last regexp MatchData or the last IO line.
2626
*
2727
* <p>
2828
* This means that when making a method call, we might need to pass down its {@link Frame} or

0 commit comments

Comments
 (0)