2 writes to _referencedEdge
PresentationFramework (2)
System\Windows\Documents\TextTreeTextNode.cs (2)
126node._referencedEdge = edge; 157_referencedEdge = edge;
10 references to _referencedEdge
PresentationFramework (10)
System\Windows\Documents\TextTreeTextNode.cs (10)
121if (_positionRefCount > 0 && edge != _referencedEdge) 173Invariant.Assert(edge == _referencedEdge, "Bad edge decrement!"); 206Invariant.Assert(edge != _referencedEdge, "Splitting at referenced edge!"); 217Invariant.Assert(edge != _referencedEdge, "Splitting at referenced edge!"); 234if (_positionRefCount > 0 && _referencedEdge == ElementEdge.BeforeStart) 426return _referencedEdge == ElementEdge.BeforeStart ? _positionRefCount > 0 : false; 470return _referencedEdge == ElementEdge.AfterEnd ? _positionRefCount > 0 : false; 502(previousNode._positionRefCount == 0 || previousNode._referencedEdge == ElementEdge.BeforeStart)) 524(nextNode._positionRefCount == 0 || (nextNode._referencedEdge == ElementEdge.AfterEnd))) 539else if ((previousNode._positionRefCount == 0 || previousNode._referencedEdge == ElementEdge.BeforeStart) &&