InfixExprNode ie = (InfixExprNode) value;
return translateInfixExprNode(tCtx, ie);
}
case ENCLOSED_EXPRESSION: {
EnclosedExprNode ee = (EnclosedExprNode) value;
return translateEnclosedExprNode(tCtx, ee);
}
case PATH_EXPRESSION:
return translatePathExpr((PathExprNode) value, tCtx);