All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jruby.internal.runtime.methods.DynamicMethod.arities.erb Maven / Gradle / Ivy

There is a newer version: 9.4.7.0
Show newest version
    /** Arity <%= arity %>, no block */
    public IRubyObject call(ThreadContext context, IRubyObject self, RubyModule klazz, String name<%= n_args_in(arity) %>) {
        return call(context, self, klazz, name<%= n_args_out(arity) %>, Block.NULL_BLOCK);
    }
    /** Arity <%= arity %>, with block; calls through IRubyObject[] path */
    public IRubyObject call(ThreadContext context, IRubyObject self, RubyModule klazz, String name<%= n_args_in(arity) %>, Block block) {
        return call(context, self, klazz, name<%= n_args_ary(arity) %>, block);
    }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy