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

org.jruby.ast.executable.Script Maven / Gradle / Ivy

There is a newer version: 9.4.7.0
Show newest version
package org.jruby.ast.executable;

import org.jruby.runtime.Block;
import org.jruby.runtime.ThreadContext;
import org.jruby.runtime.builtin.IRubyObject;

public interface Script {
    public IRubyObject __file__(ThreadContext context, IRubyObject self, Block block);
    public IRubyObject __file__(ThreadContext context, IRubyObject self, IRubyObject arg, Block block);
    public IRubyObject __file__(ThreadContext context, IRubyObject self, IRubyObject arg1, IRubyObject arg2, Block block);
    public IRubyObject __file__(ThreadContext context, IRubyObject self, IRubyObject arg, IRubyObject arg2, IRubyObject arg3, Block block);
    public IRubyObject __file__(ThreadContext context, IRubyObject self, IRubyObject[] args, Block block);
    
    public IRubyObject run(ThreadContext context, IRubyObject self, IRubyObject[] args, Block block);
    @Deprecated
    public IRubyObject load(ThreadContext context, IRubyObject self, IRubyObject[] args, Block block);
    public IRubyObject load(ThreadContext context, IRubyObject self, boolean wrap);
    public void setFilename(String filename);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy