Package org.jruby.ir.operands

Examples of org.jruby.ir.operands.Fixnum


        this.restKey = restKey;
    }

    @Override
    public Operand[] getOperands() {
        return new Operand[] { new Fixnum(required), new Fixnum(opt), new Fixnum(rest) };
    }
View Full Code Here


        this.lineNumber = lineNumber;
    }

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

        this.numArgs = numArgs;
    }

    @Override
    public Operand[] getOperands() {
        return new Operand[] { new Fixnum(required), new Fixnum(opt), new Fixnum(rest), new Fixnum(numArgs) };
    }
View Full Code Here

        return argsArray;
    }

    @Override
    public Operand[] getOperands() {
        return new Operand[] { argsArray, new Fixnum(required), new Fixnum(opt), new Fixnum(rest) };
    }
View Full Code Here

        this.result = result;
    }

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

        return postArgsCount;
    }

    @Override
    public Operand[] getOperands() {
        return new Operand[] { array, new Fixnum(preArgsCount), new Fixnum(postArgsCount), new Fixnum(index) };
    }
View Full Code Here

TOP

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

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.