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

org.jruby.runtime.CompiledBlockCallback Maven / Gradle / Ivy

There is a newer version: 9.4.7.0
Show newest version
/*
 * 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 - 2024 Weber Informatics LLC | Privacy Policy