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)
842
Assert.True(tree.GetCompilationUnitRoot().
IsIncrementallyIdenticalTo
(tree.GetCompilationUnitRoot()));
876
Assert.False(tree1.GetCompilationUnitRoot().
IsIncrementallyIdenticalTo
(tree2.GetCompilationUnitRoot()));
886
tree1.GetCompilationUnitRoot().DescendantNodes().OfType<MethodDeclarationSyntax>().Single().
IsIncrementallyIdenticalTo
(
897
tree1.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)
425
Assert.True(root1.
IsIncrementallyIdenticalTo
(root2));
448
Assert.False(root1.
IsIncrementallyIdenticalTo
(root2));
469
Assert.True(root1.
IsIncrementallyIdenticalTo
(root2));
513
Assert.True(root1.
IsIncrementallyIdenticalTo
(root2));
536
Assert.False(root1.
IsIncrementallyIdenticalTo
(root2));
557
Assert.True(root1.
IsIncrementallyIdenticalTo
(root2));
592
Assert.False(root1.
IsIncrementallyIdenticalTo
(root2));
619
Assert.False(root1.
IsIncrementallyIdenticalTo
(root2));
643
Assert.True(root1.
IsIncrementallyIdenticalTo
(root2));
678
Assert.False(root1.
IsIncrementallyIdenticalTo
(root2));
702
Assert.False(root1.
IsIncrementallyIdenticalTo
(root2));
723
Assert.False(root1.
IsIncrementallyIdenticalTo
(root2));
755
Assert.True(root1.
IsIncrementallyIdenticalTo
(root2));
778
Assert.False(root1.
IsIncrementallyIdenticalTo
(root2));
799
Assert.True(root1.
IsIncrementallyIdenticalTo
(root2));
1296
Assert.False(oldTree.GetRoot().
IsIncrementallyIdenticalTo
(newTree.GetRoot()));
1339
Assert.Equal(expectReuse, oldRoot.
IsIncrementallyIdenticalTo
(newTree.GetRoot()));