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)
272
if (
_notes
== null || _notecount >=
_notes
.Length) {
273
BacktrackNote[] newnotes = new BacktrackNote[
_notes
== null ? 16 :
_notes
.Length * 2];
274
if (
_notes
!= null)
275
System.Array.Copy(
_notes
, 0, newnotes, 0, _notecount);
279
_notes
[_notecount] = new BacktrackNote(flags, l, codepos);
1059
table[i] =
_notes
[i]._label;
1073
BacktrackNote n =
_notes
[i];