371372373374375376377378379
*/ private Ref orOp() throws PageException { Ref ref = andOp(); while(cfml.isValidIndex() && (cfml.forwardIfCurrent("||") || cfml.forwardIfCurrent("or"))) { cfml.removeSpace(); ref=new Or(ref,andOp()); } return ref; }