870871872873874875876877878
private Ref expoOp() throws PageException { Ref ref = unaryOp(); while(cfml.isValidIndex() && (cfml.forwardIfCurrent('^') || cfml.forwardIfCurrent("exp"))) { cfml.removeSpace(); ref=new Exp(ref,unaryOp()); } return ref; }