Package org.jruby.ir.instructions.specialized

Examples of org.jruby.ir.instructions.specialized.OneArgOperandAttrAssignInstr


        Operand[] callArgs = getCallArgs();
        if (containsSplat(callArgs)) return this;
       
        switch (callArgs.length) {
            case 1:
                return new OneArgOperandAttrAssignInstr(this);
        }
        return this;
    }
View Full Code Here


        Operand[] callArgs = getCallArgs();
        if (containsArgSplat(callArgs)) return this;

        switch (callArgs.length) {
            case 1:
                return new OneArgOperandAttrAssignInstr(this);
        }
        return this;
    }
View Full Code Here

TOP

Related Classes of org.jruby.ir.instructions.specialized.OneArgOperandAttrAssignInstr

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.