0
0
mirror of https://github.com/phpv8/v8js.git synced 2024-12-22 15:11:53 +00:00

Use isolate version of V8::TerminateExecution, refs #92

This commit is contained in:
Stefan Siegl 2014-05-14 23:39:41 +02:00
parent 1cff5fc927
commit a134129018

View File

@ -29,7 +29,7 @@ void php_v8js_commonjs_normalise_identifier(char *base, char *identifier, char *
/* global.exit - terminate execution */
V8JS_METHOD(exit) /* {{{ */
{
v8::V8::TerminateExecution();
v8::V8::TerminateExecution(info.GetIsolate());
}
/* }}} */