1 instantiation of BacktrackNote
System (1)
regex\system\text\regularexpressions\RegexCompiler.cs (1)
279
_notes[_notecount] = new
BacktrackNote
(flags, l, codepos);
4 references to BacktrackNote
System (4)
regex\system\text\regularexpressions\RegexCompiler.cs (4)
101
internal
BacktrackNote
[] _notes; // a list of the backtracking states to be generated
273
BacktrackNote
[] newnotes = new
BacktrackNote
[_notes == null ? 16 : _notes.Length * 2];
1073
BacktrackNote
n = _notes[i];