Package railo.runtime.interpreter

Examples of railo.runtime.interpreter.CFMLExpressionInterpreter.interpret()


              v=Caster.castTo(pc, p.getType(), p.getDefault(), false);
             
            }
              catch(PageException pe) {
                try {
                  v=interpreter.interpret(pc, p.getDefault());
                  v=Caster.castTo(pc, p.getType(), v, false);
                }
                  catch(PageException pe2) {
                  throw new ExpressionException("can not use default value ["+p.getDefault()+"] for property ["+p.getName()+"] with type ["+p.getType()+"]");
                  }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.