-
Notifications
You must be signed in to change notification settings - Fork 29.6k
New issue
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
Split output wrong for Node version 6.12.0 when trapping calls to RegExp.prototype.exec #17149
Comments
I can confirm. It's a more-or-less known bug in the v6.x implementation: Lines 477 to 488 in c6a2ec5
It's been fixed in newer V8 versions but in a way that can't be back-ported. A fix would have to be written from scratch. |
works just fine for me ;)
|
@Announcement The original poster wrote that the bug is in version 6.12.0 and was fixed by 7.10.0 at the latest. You're running 10.0.0-pre. |
There is no possible way this gets fixed in 6.x at this point. I'm going to close this out. Thanks for the report. |
The following code snippet produces the output
[ '.hover-yellow:hover' ]
using Node version 6.12.0. The expected output is[ '.hover-yellow', ':hover' ]
which is also the output produced by for example Node 7.10.0.The text was updated successfully, but these errors were encountered: