mirror of
https://github.com/nodejs/node.git
synced 2024-11-29 23:16:30 +01:00
0bba590283
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.
7 lines
138 B
Plaintext
7 lines
138 B
Plaintext
before
|
|
|
|
*test*message*stack_overflow.js:*
|
|
function stackOverflow() {
|
|
^
|
|
RangeError: Maximum call stack size exceeded
|