org.jruby.runtime.CompiledBlockCallback Maven / Gradle / Ivy
/*
* BlockCallback2.java
*
* Created on January 4, 2007, 1:12 AM
*
* To change this template, choose Tools | Template Manager
* and open the template in the editor.
*/
package org.jruby.runtime;
import org.jruby.runtime.builtin.IRubyObject;
/**
*
* @author headius
*/
public abstract class CompiledBlockCallback {
public abstract IRubyObject call(ThreadContext context, IRubyObject self, IRubyObject args, Block block);
public abstract String getFile();
public abstract int getLine();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy