cmp = compare(relationalExpr1.getRHS(), relationalExpr2.getRHS());
}
}
break;
case TYPE_TEXT_NODE_STEP:
TextNodeStep textNodeStep1 = (TextNodeStep)o1;
TextNodeStep textNodeStep2 = (TextNodeStep)o2;
cmp = textNodeStep1.getAxis() - textNodeStep2.getAxis();
if (cmp == 0)
{
cmp = compareLists(textNodeStep1.getPredicates(), textNodeStep2.getPredicates());
}
break;
case TYPE_UNARY_EXPR:
UnaryExpr unaryExpr1 = (UnaryExpr)o1;
UnaryExpr unaryExpr2 = (UnaryExpr)o2;