Package org.jruby.ast

Examples of org.jruby.ast.GlobalVarNode


        if (node instanceof NewlineNode) return ((NewlineNode) node).getNextNode();
       
        if (node instanceof FixnumNode) {
            warnUnlessEOption(ID.LITERAL_IN_CONDITIONAL_RANGE, node, "integer literal in conditional range");
            return getOperatorCallNode(node, "==", new GlobalVarNode(node.getPosition(), "$."));
        }

        return node;
    }
View Full Code Here

TOP

Related Classes of org.jruby.ast.GlobalVarNode

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.