13 references to AreEquivalentIgnoringLambdaBodies
Microsoft.CodeAnalysis.CSharp.Features (13)
EditAndContinue\CSharpEditAndContinueAnalyzer.cs (13)
813return AreEquivalentIgnoringLambdaBodies(oldStatement, newStatement); 822return oldUsingDeclarations.SequenceEqual(newUsingDeclarations, AreEquivalentIgnoringLambdaBodies); 828return AreEquivalentIgnoringLambdaBodies(oldNode.Condition, newNode.Condition); 834return AreEquivalentIgnoringLambdaBodies(oldNode.Condition, newNode.Condition); 840return AreEquivalentIgnoringLambdaBodies(oldNode.Condition, newNode.Condition); 846if (!AreEquivalentIgnoringLambdaBodies(oldNode.Expression, newNode.Expression)) 859return AreEquivalentIgnoringLambdaBodies(oldNode.Expression, newNode.Expression); 863=> AreEquivalentIgnoringLambdaBodies(oldNode.Declaration, newNode.Declaration); 868return AreEquivalentIgnoringLambdaBodies( 875if (oldNode.Kind() != newNode.Kind() || !AreEquivalentIgnoringLambdaBodies(oldNode.Expression, newNode.Expression)) 882case SyntaxKind.ForEachStatement: return AreEquivalentIgnoringLambdaBodies(((ForEachStatementSyntax)oldNode).Type, ((ForEachStatementSyntax)newNode).Type); 883case SyntaxKind.ForEachVariableStatement: return AreEquivalentIgnoringLambdaBodies(((ForEachVariableStatementSyntax)oldNode).Variable, ((ForEachVariableStatementSyntax)newNode).Variable); 2877if (!AreEquivalentIgnoringLambdaBodies(oldSwitch.Expression, newSwitch.Expression))