12 references to TypesEquivalent
Microsoft.CodeAnalysis.Features (12)
EditAndContinue\AbstractEditAndContinueAnalyzer.cs (12)
2032if (!TypesEquivalent(oldType, newType, exact: false))
2430TypesEquivalent(oldModifier.Modifier, newModifier.Modifier, exact);
2440TypesEquivalent(oldMethod.ReturnType, newMethod.ReturnType, exact);
2447TypesEquivalent(oldProperty.Type, newProperty.Type, exact);
2450=> TypesEquivalent(oldEvent.Type, newEvent.Type, exact);
2454TypesEquivalent(oldField.Type, newField.Type, exact);
2480=> TypesEquivalent(oldType.BaseType, newType.BaseType, exact) &&
4220TypesEquivalent(oldField.ContainingType.EnumUnderlyingType, newField.ContainingType.EnumUnderlyingType, exact: false))
4422if (!TypesEquivalent(oldType.EnumUnderlyingType, newType.EnumUnderlyingType, exact: true))
4424if (TypesEquivalent(oldType.EnumUnderlyingType, newType.EnumUnderlyingType, exact: false))
6409if (!TypesEquivalent(oldType, newType, exact: false))
6735TypedConstantKind.Type => TypesEquivalent((ITypeSymbol?)x.Value, (ITypeSymbol?)y.Value, exact: false),