Package railo.transformer.bytecode.statement

Examples of railo.transformer.bytecode.statement.DoWhile


   
    comments(data);
    if(!data.cfml.forwardIfCurrent("while",'('))
      throw new TemplateException(data.cfml,"do statement must have a while at the end");
   
    DoWhile doWhile=new DoWhile(condition(data),body,line,data.cfml.getPosition(),id);
   
    if(!data.cfml.forwardIfCurrent(')'))
      throw new TemplateException(data.cfml,"do statement must end with a [)]");
   
   
View Full Code Here

TOP

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

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.