Package railo.transformer.bytecode.statement

Examples of railo.transformer.bytecode.statement.ForEach


        if(!(left instanceof Variable))
          throw new TemplateException(data.cfml,"invalid syntax in for statement, left value is invalid");
       
        if(!(value instanceof Variable))
          throw new TemplateException(data.cfml,"invalid syntax in for statement, right value is invalid");
        return new ForEach((Variable)left,(Variable)value,body,line,data.cfml.getPosition(),id)
      }
      else
        throw new TemplateException(data.cfml,"invalid syntax in for statement");
  }
View Full Code Here

TOP

Related Classes of railo.transformer.bytecode.statement.ForEach

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.