}
return vType != null;
}
} else if (it instanceof NodeType && testST.getItemType() instanceof NodeType) {
NodeType nt = (NodeType) it;
NodeKind kind = nt.getNodeKind();
NodeType testNT = (NodeType) testST.getItemType();
NodeKind testKind = testNT.getNodeKind();
if (kind == NodeKind.ANY || kind == testKind) {
return true;
}
}
return false;