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)
64public TNode NewNode => _newNode; 73&& (_newNode == null) ? other._newNode == null : _newNode.Equals(other._newNode); 84if (_newNode != null) 86hash = Hash.Combine(_newNode.GetHashCode(), hash); 102return result + " [" + _newNode.ToString() + "]" + DisplayPosition(_newNode); 105return result + " [" + _oldNode.ToString() + "]" + DisplayPosition(_oldNode) + " -> [" + _newNode.ToString() + "]" + DisplayPosition(_newNode); 109return result + " [" + _oldNode.ToString() + "]" + DisplayPosition(_oldNode) + " -> " + DisplayPosition(_newNode);