6 writes to _next
System (6)
regex\system\text\regularexpressions\RegexNode.cs (3)
374at._children[k]._next = this; 478at._children[k]._next = this; 562reducedChild._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)
330curNode = 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)
273curNode = curNode._next;