@@ -93,31 +93,31 @@ public class InvocationMethodFactory extends MethodFactory implements Opcodes {
93
93
private final static String COMPILED_CALL_SIG_ZERO_BLOCK = sig (IRubyObject .class ,
94
94
params (ThreadContext .class , IRubyObject .class , RubyModule .class , String .class , Block .class ));
95
95
96
- /** The outward arity-zero call-with -block signature for compiled Ruby method handles. */
96
+ /** The outward arity-zero call-without -block signature for compiled Ruby method handles. */
97
97
private final static String COMPILED_CALL_SIG_ZERO = sig (IRubyObject .class ,
98
98
params (ThreadContext .class , IRubyObject .class , RubyModule .class , String .class ));
99
99
100
- /** The outward arity-zero call-with-block signature for compiled Ruby method handles. */
100
+ /** The outward arity-one call-with-block signature for compiled Ruby method handles. */
101
101
private final static String COMPILED_CALL_SIG_ONE_BLOCK = sig (IRubyObject .class ,
102
102
params (ThreadContext .class , IRubyObject .class , RubyModule .class , String .class , IRubyObject .class , Block .class ));
103
103
104
- /** The outward arity-zero call-with -block signature for compiled Ruby method handles. */
104
+ /** The outward arity-one call-without -block signature for compiled Ruby method handles. */
105
105
private final static String COMPILED_CALL_SIG_ONE = sig (IRubyObject .class ,
106
106
params (ThreadContext .class , IRubyObject .class , RubyModule .class , String .class , IRubyObject .class ));
107
107
108
- /** The outward arity-zero call-with-block signature for compiled Ruby method handles. */
108
+ /** The outward arity-two call-with-block signature for compiled Ruby method handles. */
109
109
private final static String COMPILED_CALL_SIG_TWO_BLOCK = sig (IRubyObject .class ,
110
110
params (ThreadContext .class , IRubyObject .class , RubyModule .class , String .class , IRubyObject .class , IRubyObject .class , Block .class ));
111
111
112
- /** The outward arity-zero call-with -block signature for compiled Ruby method handles. */
112
+ /** The outward arity-two call-without -block signature for compiled Ruby method handles. */
113
113
private final static String COMPILED_CALL_SIG_TWO = sig (IRubyObject .class ,
114
114
params (ThreadContext .class , IRubyObject .class , RubyModule .class , String .class , IRubyObject .class , IRubyObject .class ));
115
115
116
- /** The outward arity-zero call-with-block signature for compiled Ruby method handles. */
116
+ /** The outward arity-three call-with-block signature for compiled Ruby method handles. */
117
117
private final static String COMPILED_CALL_SIG_THREE_BLOCK = sig (IRubyObject .class ,
118
118
params (ThreadContext .class , IRubyObject .class , RubyModule .class , String .class , IRubyObject .class , IRubyObject .class , IRubyObject .class , Block .class ));
119
119
120
- /** The outward arity-zero call-with -block signature for compiled Ruby method handles. */
120
+ /** The outward arity-three call-without -block signature for compiled Ruby method handles. */
121
121
private final static String COMPILED_CALL_SIG_THREE = sig (IRubyObject .class ,
122
122
params (ThreadContext .class , IRubyObject .class , RubyModule .class , String .class , IRubyObject .class , IRubyObject .class , IRubyObject .class ));
123
123
0 commit comments