389390391392393394395396397
*/ private Ref andOp() throws PageException { Ref ref = notOp(); while(cfml.isValidIndex() && (cfml.forwardIfCurrent("&&") || cfml.forwardIfCurrent("and"))) { cfml.removeSpace(); ref=new And(ref,notOp()); } return ref; }