1 write to _oldRoot
Microsoft.CodeAnalysis.Workspaces (1)
Differencing\AbstractSyntaxComparer.cs (1)
41
_oldRoot
= oldRoot;
4 references to _oldRoot
Microsoft.CodeAnalysis.VisualBasic.Features (1)
EditAndContinue\SyntaxComparer.vb (1)
869
If _matchingLambdas AndAlso (node Is _newRoot OrElse node Is
_oldRoot
) Then
Microsoft.CodeAnalysis.Workspaces (3)
Differencing\AbstractSyntaxComparer.cs (3)
63
if (node ==
_oldRoot
|| node == _newRoot)
80
if (node ==
_oldRoot
)
123
var rootChildren = (node ==
_oldRoot
) ? _oldRootChildren : (node == _newRoot) ? _newRootChildren : null;