File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
core/src/main/java/org/jruby/truffle/nodes/core Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1481,8 +1481,8 @@ public abstract static class RespondToNode extends CoreMethodNode {
14811481 public RespondToNode (RubyContext context , SourceSection sourceSection ) {
14821482 super (context , sourceSection );
14831483
1484- dispatch = new DispatchHeadNode (context , false , Dispatch .MissingBehavior .CALL_METHOD_MISSING );
1485- dispatchIgnoreVisibility = new DispatchHeadNode (context , true , Dispatch .MissingBehavior .CALL_METHOD_MISSING );
1484+ dispatch = new DispatchHeadNode (context , false , Dispatch .MissingBehavior .RETURN_MISSING );
1485+ dispatchIgnoreVisibility = new DispatchHeadNode (context , true , Dispatch .MissingBehavior .RETURN_MISSING );
14861486
14871487 if (Options .TRUFFLE_DISPATCH_METAPROGRAMMING_ALWAYS_UNCACHED .load ()) {
14881488 dispatch .forceUncached ();
You can’t perform that action at this time.
0 commit comments