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

org.jruby.RubyRuntimeAdapter Maven / Gradle / Ivy


package org.jruby;

import java.io.InputStream;
import org.jruby.javasupport.JavaEmbedUtils.EvalUnit;
import org.jruby.runtime.builtin.IRubyObject;

/**
 *
 * @author nicksieger
 */
public interface RubyRuntimeAdapter {
    IRubyObject eval(Ruby runtime, String script);
    EvalUnit parse(Ruby runtime, String script, String filename, int lineNumber);
    EvalUnit parse(Ruby runtime, InputStream in, String filename, int lineNumber);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy