Exemplo n.º 1
0
 /**
  * Returns true if this expressions contains a call to position(). This is needed for context
  * changes in node steps containing multiple predicates.
  */
 public boolean hasPositionCall() {
   if (_left.hasPositionCall()) return true;
   if (_right.hasPositionCall()) return true;
   return false;
 }