Execute a binary operation by calling execute on each of the operands,
and then calling the operate method on the derived class.
XObject left = m_left.execute(xctxt, true);
XObject right = m_right.execute(xctxt, true);
boolean result = left.equals(right) ? true : false;
left.detach();
right.detach();
return result;