001    package railo.runtime.functions.dynamicEvaluation;
002    
003    import railo.runtime.PageContext;
004    import railo.runtime.exp.PageException;
005    import railo.runtime.ext.function.Function;
006    
007    /**
008     * Implements the CFML Function evaluate
009     */
010    public final class PrecisionEvaluate implements Function {
011    
012            
013            public static Object call(PageContext pc , Object[] objs) throws PageException {
014                    
015                    return Evaluate.call(pc, objs,true);
016            }
017    
018    }