-
Notifications
You must be signed in to change notification settings - Fork 45
Conversation
CI Node.js 6: https://ci.nodejs.org/view/post-mortem/job/nodereport-continuous-integration/297/ (✔️) |
Why'd you change the case of the method names? |
Because
exports to JavaScript land a function called The replacement |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
mit: I suggest the commit message say why use of NAN_EXPORT() requires changing the function name.
@sam-github How does the following sound?
|
Very clear, thanks. |
Fixes compilation errors when built on Node.js master with V8 7.4. `NAN_EXPORT()` requires the function name exported to JavaScript land and the exported C++ method to match. Change the exported C++ methods to begin with a lower case character to preserve the existing casing of the name exported to JavaScript. PR-URL: nodejs#125 Fixes: nodejs#116 Reviewed-By: Sam Roberts <vieuxtech@gmail.com>
Fixes compilation errors when built on Node.js master with V8 7.4.
Fixes: #116