-
Notifications
You must be signed in to change notification settings - Fork 504
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
ExternalAsciiStringResource is gone in upstream V8 #222
Comments
I'll guess it always was an 8-bit char array, that is, not proper ASCII. If so, a straight replacement should work 1:1, without any filtering or masking out possible high bits. Just need to condition on the right versions somehow. Has io.js got any preprocessor symbol indicating that it is iojs and not joyent node? |
Not at the moment. I'm leaning towards removing the NanNew() overloads for ExternalAsciiStringResource because those won't work across versions anyway. The only other place it's used is in _NanGetExternalParts() and that can probably be made to work through SFINAE. |
As the type has been removed, it seems like the only way, although I do not like it. It means the 1.5 branch will have to become 2.0, as functionality is removed. The good part there is that All ugly deprecated stuff can be removed, including |
Any progress on resolving this? I'm trying to port my binary packages to work under io.js when it's released, and this issue is a blocker. :( |
Replaced in v8/v8@299ed09 with 'ExternalOneByteStringResource`. Not sure about the exact version because the V8 people don't tag properly but it was probably a 3.28 release.
This affects iojs because it ships V8 3.30. I'll try to come up with a patch.
The text was updated successfully, but these errors were encountered: