15 references to TypesEquivalent
Microsoft.CodeAnalysis.CSharp.Features (1)
EditAndContinue\CSharpEditAndContinueAnalyzer.cs (1)
1562
if (!
TypesEquivalent
(oldMethod.ReturnType, newMethod.ReturnType, exact: false))
Microsoft.CodeAnalysis.Features (14)
EditAndContinue\AbstractEditAndContinueAnalyzer.cs (14)
2151
if (!
TypesEquivalent
(oldType, newType, exact: false))
2555
TypesEquivalent
(oldModifier.Modifier, newModifier.Modifier, exact);
2565
TypesEquivalent
(oldMethod.ReturnType, newMethod.ReturnType, exact);
2572
TypesEquivalent
(oldProperty.Type, newProperty.Type, exact);
2575
=>
TypesEquivalent
(oldEvent.Type, newEvent.Type, exact);
2579
TypesEquivalent
(oldField.Type, newField.Type, exact);
2586
=> oldTypes.SequenceEqual(newTypes, exact, (x, y, exact) =>
TypesEquivalent
(x, y, exact));
2619
=>
TypesEquivalent
(oldType.BaseType, newType.BaseType, exact) &&
2762
if (
TypesEquivalent
(oldSymbol.ContainingType, newSymbol.ContainingType, exact: false) &&
4390
TypesEquivalent
(oldField.ContainingType.EnumUnderlyingType, newField.ContainingType.EnumUnderlyingType, exact: false))
4608
if (!
TypesEquivalent
(oldType.EnumUnderlyingType, newType.EnumUnderlyingType, exact: true))
4610
if (
TypesEquivalent
(oldType.EnumUnderlyingType, newType.EnumUnderlyingType, exact: false))
6595
if (!
TypesEquivalent
(oldType, newType, exact: false))
6925
TypedConstantKind.Type =>
TypesEquivalent
((ITypeSymbol?)x.Value, (ITypeSymbol?)y.Value, exact: false),