353354355356357358359360361
*/ private Ref xorOp() throws PageException { Ref ref = orOp(); while(cfml.forwardIfCurrent("xor")) { cfml.removeSpace(); ref=new Xor(ref,orOp()); } return ref; }