Search in sources :

Example 1 with EQV

use of lucee.runtime.interpreter.ref.op.EQV in project Lucee by lucee.

the class CFMLExpressionInterpreter method eqvOp.

/**
 * Transfomiert eine  Equivalence (eqv) Operation.
 * <br />
 * EBNF:<br />
 * <code>xorOp {"eqv" spaces xorOp};</code>
 * @return CFXD Element
 * @throws PageException
 */
private Ref eqvOp() throws PageException {
    Ref ref = xorOp();
    while (cfml.forwardIfCurrent("eqv")) {
        cfml.removeSpace();
        ref = new EQV(ref, xorOp(), limited);
    }
    return ref;
}
Also used : Ref(lucee.runtime.interpreter.ref.Ref) EQV(lucee.runtime.interpreter.ref.op.EQV)

Aggregations

Ref (lucee.runtime.interpreter.ref.Ref)1 EQV (lucee.runtime.interpreter.ref.op.EQV)1