Package org.jruby.ast

Examples of org.jruby.ast.ComplexNode


    private RationalNode newRationalNode(String value, int radix) throws NumberFormatException {
        return new RationalNode(getPosition(), Long.parseLong(value, radix), 1);
    }
   
    private ComplexNode newComplexNode(Node number) {
        return new ComplexNode(getPosition(), number);
    }
View Full Code Here

TOP

Related Classes of org.jruby.ast.ComplexNode

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.