14 references to MemberSignaturesEquivalent
Microsoft.CodeAnalysis.CSharp.Features (5)
EditAndContinue\CSharpEditAndContinueAnalyzer.cs (5)
1509return MemberSignaturesEquivalent(oldQueryClauseInfo.CastInfo.Symbol, newQueryClauseInfo.CastInfo.Symbol) && 1510MemberSignaturesEquivalent(oldQueryClauseInfo.OperationInfo.Symbol, newQueryClauseInfo.OperationInfo.Symbol); 1517return MemberSignaturesEquivalent(oldOrderingInfo.Symbol, newOrderingInfo.Symbol); 1528MemberSignaturesEquivalent(oldSelectInfo.Symbol, newSelectInfo.Symbol); 1533return MemberSignaturesEquivalent(oldGroupByInfo.Symbol, newGroupByInfo.Symbol, GroupBySignatureComparer);
Microsoft.CodeAnalysis.VisualBasic.Features (9)
EditAndContinue\VisualBasicEditAndContinueAnalyzer.vb (9)
1446Return MemberSignaturesEquivalent(oldInfo.Select1.Symbol, newInfo.Select1.Symbol) AndAlso 1447MemberSignaturesEquivalent(oldInfo.Select2.Symbol, newInfo.Select2.Symbol) 1452Return MemberSignaturesEquivalent(oldInfo.AsClauseConversion.Symbol, newInfo.AsClauseConversion.Symbol) AndAlso 1453MemberSignaturesEquivalent(oldInfo.SelectMany.Symbol, newInfo.SelectMany.Symbol) AndAlso 1454MemberSignaturesEquivalent(oldInfo.ToQueryableCollectionConversion.Symbol, newInfo.ToQueryableCollectionConversion.Symbol) 1459Return MemberSignaturesEquivalent(oldInfo.Symbol, newInfo.Symbol) 1464Return MemberSignaturesEquivalent(oldInfo.Symbol, newInfo.Symbol) 1470Return MemberSignaturesEquivalent(oldInfo.Symbol, newInfo.Symbol) 1484Return MemberSignaturesEquivalent(oldInfo.Symbol, newInfo.Symbol)