if(!data.cfml.forwardIfCurrent(')'))
throw new TemplateException(data.cfml,"invalid syntax in for statement, for statement must end with a [)]");
// ex block
statement(data,body,CTX_FOR);
return new For(left,cont,update,body,line,data.cfml.getPosition(),id);
}
// middle foreach
else if(data.cfml.forwardIfCurrent("in")) {
// condition
comments(data);