8 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)
867
Assert.True(tree.GetCompilationUnitRoot().
IsIncrementallyIdenticalTo
(tree.GetCompilationUnitRoot()));
901
Assert.False(tree1.GetCompilationUnitRoot().
IsIncrementallyIdenticalTo
(tree2.GetCompilationUnitRoot()));
911
tree1.GetCompilationUnitRoot().DescendantNodes().OfType<MethodDeclarationSyntax>().Single().
IsIncrementallyIdenticalTo
(
922
tree1.GetCompilationUnitRoot().DescendantNodes().OfType<MethodDeclarationSyntax>().Single().
IsIncrementallyIdenticalTo
(
Microsoft.CodeAnalysis.Workspaces (3)
Classification\SyntaxClassification\SyntacticChangeRangeComputer.cs (3)
18
/// cref="SyntaxNode.
IsIncrementallyIdenticalTo
"/>). This algorithm is intended to be <em>fast</em>. It is
119
if (oldRoot.
IsIncrementallyIdenticalTo
(newRoot))
178
Contract.ThrowIfTrue(oldRoot.
IsIncrementallyIdenticalTo
(newRoot));