Package railo.transformer.bytecode.statement

Examples of railo.transformer.bytecode.statement.While


      }
    }
   
    Position line = data.cfml.getPosition();
    Body body=new BodyBase();
    While whil=new While(condition(data),body,line,null,id);
   
    if(!data.cfml.forwardIfCurrent(')'))
      throw new TemplateException(data.cfml,"while statement must end with a [)]");
   
    statement(data,body,CTX_WHILE);
    whil.setEnd(data.cfml.getPosition());
    return whil;
  }
View Full Code Here

TOP

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

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.