We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
I have a error in a unit test on dotnet core.
File RegExpTests, method compile(), line Evaluate("x.compile('cde')");
RegExpTests
compile()
Evaluate("x.compile('cde')");
The error is in RegExpInstance, when calling Compile("cde", null), at new Regex(pattern, ParseFlags(flags) | RegexOptions.Compiled);
RegExpInstance
Compile("cde", null)
new Regex(pattern, ParseFlags(flags) | RegexOptions.Compiled);
It seams that the ECMAScript flag is causing this issue.
Here seams to be the revealant code in the dotnet core framework : https://github.com/dotnet/corefx/blob/master/src/System.Text.RegularExpressions/src/System/Text/RegularExpressions/Regex.cs#L174-L184
The text was updated successfully, but these errors were encountered:
Hmm, I'm only using the IgnoreCase, Multiline and Compiled flag, all of which should be allowed in conjunction with ECMAScript flag. Weird.
IgnoreCase
Multiline
Compiled
ECMAScript
Sorry, something went wrong.
You can give it a try in PR #75
No branches or pull requests
Hi,
I have a error in a unit test on dotnet core.
File
RegExpTests
, methodcompile()
, lineEvaluate("x.compile('cde')");
The error is in
RegExpInstance
, when callingCompile("cde", null)
, atnew Regex(pattern, ParseFlags(flags) | RegexOptions.Compiled);
It seams that the ECMAScript flag is causing this issue.
Here seams to be the revealant code in the dotnet core framework :
https://github.com/dotnet/corefx/blob/master/src/System.Text.RegularExpressions/src/System/Text/RegularExpressions/Regex.cs#L174-L184
The text was updated successfully, but these errors were encountered: