File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
src/main/java/org/truffleruby/language/dispatch Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 11
11
12
12
import com .oracle .truffle .api .frame .VirtualFrame ;
13
13
import com .oracle .truffle .api .nodes .NodeCost ;
14
+ import org .truffleruby .core .kernel .KernelNodes .RespondToNode ;
14
15
import org .truffleruby .core .klass .RubyClass ;
15
16
import org .truffleruby .language .RubyBaseNode ;
16
17
import org .truffleruby .language .methods .InternalMethod ;
24
25
*
25
26
* <p>
26
27
* This does NOT call <code>respond_to_missing?</code> on the object, and as such is not a substitute for
27
- * {@link KernelNodes. RespondToNode} which implements the Ruby <code>Object#respond_to?</code>, and should be used in
28
- * almost all cases, especially when implementing Ruby methods with Java nodes. */
28
+ * {@link RespondToNode} which implements the Ruby <code>Object#respond_to?</code>, and should be used in almost all
29
+ * cases, especially when implementing Ruby methods with Java nodes. */
29
30
public class InternalRespondToNode extends RubyBaseNode {
30
31
31
32
// NOTE(norswap): cf. comment above static fields in DispatchNode to see why we need this field
You can’t perform that action at this time.
0 commit comments