6 writes to _next
System (6)
regex\system\text\regularexpressions\RegexNode.cs (3)
374
at._children[k].
_next
= this;
478
at._children[k].
_next
= this;
562
reducedChild.
_next
= this;
regex\system\text\regularexpressions\RegexParser.cs (3)
1910
_group.
_next
= _stack;
1911
_alternation.
_next
= _group;
1912
_concatenation.
_next
= _alternation;
5 references to _next
System (5)
regex\system\text\regularexpressions\RegexFCD.cs (1)
330
curNode = curNode.
_next
;
regex\system\text\regularexpressions\RegexParser.cs (3)
1921
_alternation = _concatenation.
_next
;
1922
_group = _alternation.
_next
;
1923
_stack = _group.
_next
;
regex\system\text\regularexpressions\RegexWriter.cs (1)
273
curNode = curNode.
_next
;