4 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 (3)
Syntax\SyntaxNodeTests.cs (3)
875
Assert.True(tree.GetCompilationUnitRoot().EndOfFileToken.
IsIncrementallyIdenticalTo
(tree.GetCompilationUnitRoot().EndOfFileToken));
883
Assert.False(tree.GetCompilationUnitRoot().GetFirstToken().
IsIncrementallyIdenticalTo
(tree.GetCompilationUnitRoot().GetFirstToken().GetNextToken()));
892
Assert.True(tree1.GetCompilationUnitRoot().GetFirstToken().
IsIncrementallyIdenticalTo
(tree2.GetCompilationUnitRoot().GetFirstToken()));