1 /*2 * BlockCallback2.java3 *4 * Created on January 4, 2007, 1:12 AM5 *6 * To change this template, choose Tools | Template Manager7 * and open the template in the editor.8 */9 10 package org.jruby.runtime;11 12 import org.jruby.runtime.builtin.IRubyObject;13 14 /**15 *16 * @author headius17 */18 public interface CompiledBlockCallback {19 public IRubyObject call(ThreadContext context, IRubyObject self, IRubyObject[] args, Block block, IRubyObject[][] parentScopes);20 }21