Package org.auraframework.impl.expression.functions

Examples of org.auraframework.impl.expression.functions.Function


    /**
     * for calling a function by name()
     */
    public Expression createFunction(String name, List<Expression> args) {
        Function f = lookup(name);
        if (f == null) {
            // TODO: typed exception
            throw new AuraRuntimeException("No function found for key: " + name, l);
        }
        return new FunctionCallImpl(f, args == null ? ImmutableList.<Expression> of() : ImmutableList.copyOf(args), l);
View Full Code Here

TOP

Related Classes of org.auraframework.impl.expression.functions.Function

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.