1 write to runregex
System.Text.RegularExpressions (1)
System\Text\RegularExpressions\RegexRunner.cs (1)
281
runregex
= regex;
8 references to runregex
System.Text.RegularExpressions (8)
System\Text\RegularExpressions\RegexRunner.cs (8)
159
InternalScan(
runregex
!, beginning, beginning + text.Length);
291
runmatch =
runregex
!.caps is null ?
292
new Match(
runregex
,
runregex
.capsize, runtext, text.Length) :
293
new MatchSparse(
runregex
,
runregex
.caps,
runregex
.capsize, runtext, text.Length);
364
void ThrowRegexTimeout() => throw new RegexMatchTimeoutException(runtext ?? string.Empty,
runregex
!.pattern!, TimeSpan.FromMilliseconds(_timeout));