File tree Expand file tree Collapse file tree 1 file changed +1
-2
lines changed
src/main/java/org/truffleruby/core/cast Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Original file line number Diff line number Diff line change 25
25
import com .oracle .truffle .api .dsl .NodeChild ;
26
26
import com .oracle .truffle .api .dsl .Specialization ;
27
27
28
- import static org .truffleruby .language .dispatch .DispatchConfiguration .PRIVATE_RETURN_MISSING ;
29
28
30
29
/** Splat as used to cast a value to an array if it isn't already, as in {@code *value}. Must be a RubyNode because it's
31
30
* used in the translator. */
@@ -121,7 +120,7 @@ private Object callToA(Object nil) {
121
120
CompilerDirectives .transferToInterpreterAndInvalidate ();
122
121
toA = insert (DispatchNode .create ());
123
122
}
124
- return toA .call (PRIVATE_RETURN_MISSING , nil , "to_a" );
123
+ return toA .call (nil , "to_a" );
125
124
}
126
125
127
126
private RubyArray executeDup (RubyArray array ) {
You can’t perform that action at this time.
0 commit comments