1 write to _newNode
Microsoft.CodeAnalysis.Workspaces (1)
Differencing\Edit.cs (1)
37
_newNode
= newNode;
12 references to _newNode
Microsoft.CodeAnalysis.Workspaces (12)
Differencing\Edit.cs (12)
64
public TNode NewNode =>
_newNode
;
73
&& (
_newNode
== null) ? other.
_newNode
== null :
_newNode
.Equals(other.
_newNode
);
84
if (
_newNode
!= null)
86
hash = Hash.Combine(
_newNode
.GetHashCode(), hash);
102
return result + " [" +
_newNode
.ToString() + "]" + DisplayPosition(
_newNode
);
105
return result + " [" + _oldNode.ToString() + "]" + DisplayPosition(_oldNode) + " -> [" +
_newNode
.ToString() + "]" + DisplayPosition(
_newNode
);
109
return result + " [" + _oldNode.ToString() + "]" + DisplayPosition(_oldNode) + " -> " + DisplayPosition(
_newNode
);