mirror of https://github.com/lukechilds/node.git
Browse Source
All compile time warnings about using deprecated APIs have been suppressed by updating node's API. Though there are still many function calls that can accept Isolate, and still need to be updated. node_isolate had to be added as an extern variable in node.h and node_object_wrap.h Also a couple small fixes for Error handling. Before v8 3.16.6 the error stack message was lazily written when it was needed, which allowed you to change the message after instantiation. Then the stack would be written with the new message the first time it was accessed. Though that has changed. Now it creates the stack message on instantiation. So setting a different message afterwards won't be displayed. This is not a complete fix for the problem. Getting error without any message isn't very useful.v0.11.0-release
Trevor Norris
12 years ago
committed by
Ben Noordhuis
29 changed files with 139 additions and 118 deletions
@ -1,6 +1,6 @@ |
|||
before |
|||
|
|||
*test*message*stack_overflow.js:31 |
|||
*test*message*stack_overflow.js:* |
|||
function stackOverflow() { |
|||
^ |
|||
RangeError: Maximum call stack size exceeded |
|||
|
Loading…
Reference in new issue