3 references to Compiled
System.Text.RegularExpressions.Generator (3)
RegexGenerator.cs (1)
83
RegexTree regexTree = RegexParser.Parse(method.Pattern, method.Options | RegexOptions.
Compiled
, method.Culture); // make sure Compiled is included to get all optimizations applied to it
RegexGenerator.Parser.cs (1)
180
RegexOptions.
Compiled
|
src\libraries\System.Text.RegularExpressions\src\System\Text\RegularExpressions\RegexFindOptimizations.cs (1)
115
bool compiled = (options & RegexOptions.
Compiled
) != 0 && !dfa; // for now, we never generate code for NonBacktracking, so treat it as non-compiled