Examples of Fixnum


Examples of org.jruby.ir.operands.Fixnum

        this.postReqdArgsCount = postReqdArgsCount;
    }

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

Examples of org.jruby.ir.operands.Fixnum

        this.requiredArgs = requiredArgs;
    }

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

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

Examples of org.jruby.ir.operands.Fixnum

        this.lineNumber = lineNumber;
    }

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

Examples of org.jruby.ir.operands.Fixnum

        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

Examples of org.jruby.ir.operands.Fixnum

        return argsArray;
    }

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

Examples of org.jruby.ir.operands.Fixnum

        this.result = result;
    }

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

Examples of org.jruby.ir.operands.Fixnum

        return postArgsCount;
    }

    @Override
    public Operand[] getOperands() {
        return new Operand[] { array, new Fixnum(preArgsCount), new Fixnum(postArgsCount), new Fixnum(index) };
    }
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.