1 write to runregex
System.Text.RegularExpressions (1)
System\Text\RegularExpressions\RegexRunner.cs (1)
281runregex = regex;
11 references to runregex
System.Text.RegularExpressions (11)
System\Text\RegularExpressions\RegexInterpreter.cs (3)
326Debug.Assert(runregex is not null); 331if (runregex.RightToLeft) 871if ((runregex!.roptions & RegexOptions.ECMAScript) == 0)
System\Text\RegularExpressions\RegexRunner.cs (8)
159InternalScan(runregex!, beginning, beginning + text.Length); 291runmatch = runregex!.caps is null ? 292new Match(runregex, runregex.capsize, runtext, text.Length) : 293new MatchSparse(runregex, runregex.caps, runregex.capsize, runtext, text.Length); 364void ThrowRegexTimeout() => throw new RegexMatchTimeoutException(runtext ?? string.Empty, runregex!.pattern!, TimeSpan.FromMilliseconds(_timeout));