8 references to ECMAScript
System (7)
regex\system\text\regularexpressions\Regex.cs (2)
245
if ((options & RegexOptions.
ECMAScript
) != 0
246
&& (options & ~(RegexOptions.
ECMAScript
|
regex\system\text\regularexpressions\RegexCompiler.cs (1)
2584
if ((_options & RegexOptions.
ECMAScript
) != 0)
regex\system\text\regularexpressions\RegexInterpreter.cs (1)
845
if ((runregex.roptions & RegexOptions.
ECMAScript
) == 0)
regex\system\text\regularexpressions\RegexParser.cs (3)
1343
|| option == RegexOptions.
ECMAScript
1500
return RegexOptions.
ECMAScript
;
1791
return(_options & RegexOptions.
ECMAScript
) != 0;
System.Data.Entity (1)
System\Data\Mapping\ViewGeneration\CqlGeneration\CqlWriter.cs (1)
24
private static readonly Regex s_wordIdentifierRegex = new Regex(@"^[_A-Za-z]\w*$", RegexOptions.
ECMAScript
| RegexOptions.Compiled);