Package r.builtins.CallFactory

Examples of r.builtins.CallFactory.ArgumentInfo


        super(name, parameters, required);
        this.fun = fun;
    }

    @Override public RNode create(ASTNode call, RSymbol[] names, RNode[] exprs) {
        final ArgumentInfo ai = check(call, names, exprs);
        return new Builtin(call, names, exprs) {
            @Override public RAny doBuiltIn(Frame frame, RAny[] args) {
                RAny res = fun.invoke(ai, args);
                return res;
            }
View Full Code Here

TOP

Related Classes of r.builtins.CallFactory.ArgumentInfo

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.