Package org.jruby.compiler.ir.operands

Examples of org.jruby.compiler.ir.operands.Operand.store()


        Operand destination = getResult(); // result is a confusing name

        if (restOfArgArray) {
            interpretAsRestArg(destination, interp);
        } else {
            destination.store(interp, interp.getParameter(argIndex));
        }
        return null;
    }

    @Interp
View Full Code Here


    @Override
    public Label interpret(InterpreterContext interp, IRubyObject self) {
        Operand destination = getResult(); // result is a confusing name
        // SSS FIXME: Anything else to do here??
        destination.store(interp, self);
        return null;
    }
}
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.