Package org.jruby.compiler.ir.instructions

Examples of org.jruby.compiler.ir.instructions.SearchConstInstr


        return val;
    }

    private Operand searchConst(IRScope s, String name) {
        Variable v = s.getNewTemporaryVariable();
        s.addInstr(new SearchConstInstr(v, s, name));
        return v;
    }
View Full Code Here


    }

    public Operand buildColon3(Colon3Node node, IRScope s) {
        Variable cv = s.getNewTemporaryVariable();
        // SSS FIXME: Is this correct?
        s.addInstr(new SearchConstInstr(cv, getSelf(s), node.getName()));
        return cv;
    }
View Full Code Here

TOP

Related Classes of org.jruby.compiler.ir.instructions.SearchConstInstr

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.