Package org.jruby.ast

Examples of org.jruby.ast.FCallManyArgsNode


               
                return new FCallThreeArgNode(union(operation, args), name, args);
            default:
                if (iter != null) return new FCallManyArgsBlockNode(union(operation, args), name, args, (IterNode) iter);

                return new FCallManyArgsNode(union(operation, args), name, args);
        }
    }
View Full Code Here


               
                return new FCallThreeArgNode(position, name, args);
            default:
                if (iter != null) return new FCallManyArgsBlockNode(position, name, args, (IterNode) iter);

                return new FCallManyArgsNode(position, name, args);
        }
    }
View Full Code Here

TOP

Related Classes of org.jruby.ast.FCallManyArgsNode

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.