Examples of UnboxedBoolean


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

Examples of org.jruby.ir.operands.UnboxedBoolean

        this(false);
    }

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

Examples of org.jruby.ir.operands.UnboxedBoolean

        return unwrapArray;
    }

    @Override
    public Operand[] getOperands() {
        return new Operand[] {blockArg, yieldArg, new UnboxedBoolean(unwrapArray) };
    }
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.