Package org.jruby.ir.operands

Examples of org.jruby.ir.operands.UnboxedBoolean


        this.noPrivateConsts = noPrivateConsts;
    }

    @Override
    public Operand[] getOperands() {
        return new Operand[] { new StringLiteral(constName), startingScope, new UnboxedBoolean(noPrivateConsts) };
    }
View Full Code Here


        this(false);
    }

    @Override
    public Operand[] getOperands() {
        return new Operand[] { new UnboxedBoolean(onBackEdge) };
    }
View Full Code Here

        return unwrapArray;
    }

    @Override
    public Operand[] getOperands() {
        return new Operand[] {blockArg, yieldArg, new UnboxedBoolean(unwrapArray) };
    }
View Full Code Here

TOP

Related Classes of org.jruby.ir.operands.UnboxedBoolean

Copyright © 2018 www.massapicom. 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.