}
@Override
public boolean matches(final INode other, final Match match) {
if (other instanceof TypeReferenceExpression) {
final TypeReferenceExpression typeReferenceExpression = (TypeReferenceExpression) other;
final TypeReference typeReference = typeReferenceExpression.getType().getUserData(Keys.TYPE_REFERENCE);
return typeReference != null &&
StringUtilities.equals(_descriptor, typeReference.getInternalName());
}
return false;