8 references to AreEquivalentIgnoringLambdaBodies
Microsoft.CodeAnalysis.VisualBasic.Features (8)
EditAndContinue\VisualBasicEditAndContinueAnalyzer.vb (8)
438Return AreEquivalentIgnoringLambdaBodies(oldStatement, newStatement) AndAlso
439AreEquivalentIgnoringLambdaBodies(DirectCast(oldStatement.Parent, VariableDeclaratorSyntax).AsClause,
459Return AreEquivalentIgnoringLambdaBodies(oldStatement, newStatement)
2344areEquivalent:=Function(n1, n2) AreEquivalentIgnoringLambdaBodies(n1.SyncLockStatement.Expression, n2.SyncLockStatement.Expression),
2351areEquivalent:=Function(n1, n2) AreEquivalentIgnoringLambdaBodies(n1.WithStatement.Expression, n2.WithStatement.Expression),
2358areEquivalent:=Function(n1, n2) AreEquivalentIgnoringLambdaBodies(n1.UsingStatement.Expression, n2.UsingStatement.Expression),
2365areEquivalent:=Function(n1, n2) AreEquivalentIgnoringLambdaBodies(n1.ForOrForEachStatement, n2.ForOrForEachStatement),
2366areSimilar:=Function(n1, n2) AreEquivalentIgnoringLambdaBodies(DirectCast(n1.ForOrForEachStatement, ForEachStatementSyntax).ControlVariable,