14 references to TypesEquivalent
Microsoft.CodeAnalysis.CSharp.Features (1)
EditAndContinue\CSharpEditAndContinueAnalyzer.cs (1)
1555if (!TypesEquivalent(oldReturnType, newReturnType, exact: false))
Microsoft.CodeAnalysis.Features (13)
EditAndContinue\AbstractEditAndContinueAnalyzer.cs (13)
2293TypesEquivalent(oldModifier.Modifier, newModifier.Modifier, exact); 2303TypesEquivalent(oldMethod.ReturnType, newMethod.ReturnType, exact); 2310TypesEquivalent(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) && 2478if (TypesEquivalent(oldSymbol.ContainingType, newSymbol.ContainingType, exact: false) && 3817TypesEquivalent(oldField.ContainingType.EnumUnderlyingType, newField.ContainingType.EnumUnderlyingType, exact: false)) 3986if (!TypesEquivalent(oldType, newType, exact: true)) 3988if (TypesEquivalent(oldType, newType, exact: false)) 4003if (!TypesEquivalent(oldType.EnumUnderlyingType, newType.EnumUnderlyingType, exact: true)) 4005if (TypesEquivalent(oldType.EnumUnderlyingType, newType.EnumUnderlyingType, exact: false)) 5724if (!TypesEquivalent(oldTypeOpt, newTypeOpt, exact: false))