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