1 28 package org.jruby.internal.runtime.methods; 29 30 import org.jruby.runtime.Block; 31 import org.jruby.runtime.ThreadContext; 32 import org.jruby.runtime.builtin.IRubyObject; 33 34 40 public interface MultiStub { 41 IRubyObject method0(ThreadContext tc, IRubyObject self, IRubyObject[] args, Block block); 42 IRubyObject method1(ThreadContext tc, IRubyObject self, IRubyObject[] args, Block block); 43 IRubyObject method2(ThreadContext tc, IRubyObject self, IRubyObject[] args, Block block); 44 IRubyObject method3(ThreadContext tc, IRubyObject self, IRubyObject[] args, Block block); 45 IRubyObject method4(ThreadContext tc, IRubyObject self, IRubyObject[] args, Block block); 46 IRubyObject method5(ThreadContext tc, IRubyObject self, IRubyObject[] args, Block block); 47 IRubyObject method6(ThreadContext tc, IRubyObject self, IRubyObject[] args, Block block); 48 IRubyObject method7(ThreadContext tc, IRubyObject self, IRubyObject[] args, Block block); 49 IRubyObject method8(ThreadContext tc, IRubyObject self, IRubyObject[] args, Block block); 50 IRubyObject method9(ThreadContext tc, IRubyObject self, IRubyObject[] args, Block block); 51 } 52 | Popular Tags |