Package org.jruby.compiler.ir.operands

Examples of org.jruby.compiler.ir.operands.DynamicSymbol


    public Operand buildDSymbol(Node node, IRScope s) {
        List<Operand> strPieces = new ArrayList<Operand>();
        for (Node n : node.childNodes())
            strPieces.add(build(n, s));

        return new DynamicSymbol(new CompoundString(strPieces));
    }
View Full Code Here

TOP

Related Classes of org.jruby.compiler.ir.operands.DynamicSymbol

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.