8 references to AreEquivalentIgnoringLambdaBodies
Microsoft.CodeAnalysis.VisualBasic.Features (8)
EditAndContinue\VisualBasicEditAndContinueAnalyzer.vb (8)
425Return AreEquivalentIgnoringLambdaBodies(oldStatement, newStatement) AndAlso
426AreEquivalentIgnoringLambdaBodies(DirectCast(oldStatement.Parent, VariableDeclaratorSyntax).AsClause,
446Return AreEquivalentIgnoringLambdaBodies(oldStatement, newStatement)
2331areEquivalent:=Function(n1, n2) AreEquivalentIgnoringLambdaBodies(n1.SyncLockStatement.Expression, n2.SyncLockStatement.Expression),
2338areEquivalent:=Function(n1, n2) AreEquivalentIgnoringLambdaBodies(n1.WithStatement.Expression, n2.WithStatement.Expression),
2345areEquivalent:=Function(n1, n2) AreEquivalentIgnoringLambdaBodies(n1.UsingStatement.Expression, n2.UsingStatement.Expression),
2352areEquivalent:=Function(n1, n2) AreEquivalentIgnoringLambdaBodies(n1.ForOrForEachStatement, n2.ForOrForEachStatement),
2353areSimilar:=Function(n1, n2) AreEquivalentIgnoringLambdaBodies(DirectCast(n1.ForOrForEachStatement, ForEachStatementSyntax).ControlVariable,