23 references to IsIncrementallyIdenticalTo
Microsoft.CodeAnalysis (1)
Syntax\SyntaxNodeOrToken.cs (1)
761/// See <see cref="SyntaxNode.IsIncrementallyIdenticalTo"/> and <see cref="SyntaxToken.IsIncrementallyIdenticalTo"/>.
Microsoft.CodeAnalysis.CSharp.Syntax.UnitTests (4)
Syntax\SyntaxNodeTests.cs (4)
842Assert.True(tree.GetCompilationUnitRoot().IsIncrementallyIdenticalTo(tree.GetCompilationUnitRoot())); 876Assert.False(tree1.GetCompilationUnitRoot().IsIncrementallyIdenticalTo(tree2.GetCompilationUnitRoot())); 886tree1.GetCompilationUnitRoot().DescendantNodes().OfType<MethodDeclarationSyntax>().Single().IsIncrementallyIdenticalTo( 897tree1.GetCompilationUnitRoot().DescendantNodes().OfType<MethodDeclarationSyntax>().Single().IsIncrementallyIdenticalTo(
Microsoft.CodeAnalysis.Workspaces (1)
Classification\SyntaxClassification\SyntacticChangeRangeComputer.cs (1)
19/// cref="SyntaxNode.IsIncrementallyIdenticalTo"/>). This algorithm is intended to be <em>fast</em>. It is
Microsoft.CodeAnalysis.Workspaces.UnitTests (17)
SolutionTests\SolutionTests.cs (17)
425Assert.True(root1.IsIncrementallyIdenticalTo(root2)); 448Assert.False(root1.IsIncrementallyIdenticalTo(root2)); 469Assert.True(root1.IsIncrementallyIdenticalTo(root2)); 513Assert.True(root1.IsIncrementallyIdenticalTo(root2)); 536Assert.False(root1.IsIncrementallyIdenticalTo(root2)); 557Assert.True(root1.IsIncrementallyIdenticalTo(root2)); 592Assert.False(root1.IsIncrementallyIdenticalTo(root2)); 619Assert.False(root1.IsIncrementallyIdenticalTo(root2)); 643Assert.True(root1.IsIncrementallyIdenticalTo(root2)); 678Assert.False(root1.IsIncrementallyIdenticalTo(root2)); 702Assert.False(root1.IsIncrementallyIdenticalTo(root2)); 723Assert.False(root1.IsIncrementallyIdenticalTo(root2)); 755Assert.True(root1.IsIncrementallyIdenticalTo(root2)); 778Assert.False(root1.IsIncrementallyIdenticalTo(root2)); 799Assert.True(root1.IsIncrementallyIdenticalTo(root2)); 1296Assert.False(oldTree.GetRoot().IsIncrementallyIdenticalTo(newTree.GetRoot())); 1339Assert.Equal(expectReuse, oldRoot.IsIncrementallyIdenticalTo(newTree.GetRoot()));