2 writes to _notes
System (2)
regex\system\text\regularexpressions\RegexCompiler.cs (2)
276_notes = newnotes; 1571_notes = null;
9 references to _notes
System (9)
regex\system\text\regularexpressions\RegexCompiler.cs (9)
272if (_notes == null || _notecount >= _notes.Length) { 273BacktrackNote[] newnotes = new BacktrackNote[_notes == null ? 16 : _notes.Length * 2]; 274if (_notes != null) 275System.Array.Copy(_notes, 0, newnotes, 0, _notecount); 279_notes[_notecount] = new BacktrackNote(flags, l, codepos); 1059table[i] = _notes[i]._label; 1073BacktrackNote n = _notes[i];