14 references to TypesEquivalent
Microsoft.CodeAnalysis.CSharp.Features (1)
EditAndContinue\CSharpEditAndContinueAnalyzer.cs (1)
1555
if (!
TypesEquivalent
(oldReturnType, newReturnType, exact: false))
Microsoft.CodeAnalysis.Features (13)
EditAndContinue\AbstractEditAndContinueAnalyzer.cs (13)
2293
TypesEquivalent
(oldModifier.Modifier, newModifier.Modifier, exact);
2303
TypesEquivalent
(oldMethod.ReturnType, newMethod.ReturnType, exact);
2310
TypesEquivalent
(oldProperty.Type, newProperty.Type, exact);
2313
=>
TypesEquivalent
(oldEvent.Type, newEvent.Type, exact);
2320
=> oldTypes.SequenceEqual(newTypes, exact, (x, y, exact) =>
TypesEquivalent
(x, y, exact));
2338
=>
TypesEquivalent
(oldType.BaseType, newType.BaseType, exact) &&
2478
if (
TypesEquivalent
(oldSymbol.ContainingType, newSymbol.ContainingType, exact: false) &&
3817
TypesEquivalent
(oldField.ContainingType.EnumUnderlyingType, newField.ContainingType.EnumUnderlyingType, exact: false))
3986
if (!
TypesEquivalent
(oldType, newType, exact: true))
3988
if (
TypesEquivalent
(oldType, newType, exact: false))
4003
if (!
TypesEquivalent
(oldType.EnumUnderlyingType, newType.EnumUnderlyingType, exact: true))
4005
if (
TypesEquivalent
(oldType.EnumUnderlyingType, newType.EnumUnderlyingType, exact: false))
5724
if (!
TypesEquivalent
(oldTypeOpt, newTypeOpt, exact: false))