@@ -424,18 +424,6 @@ static PHP_METHOD(V8Isolate, LowMemoryNotification) {
424424 isolate->LowMemoryNotification ();
425425}
426426
427-
428- static PHP_METHOD (V8Isolate, ContextDisposedNotification) {
429- if (zend_parse_parameters_none () == FAILURE) {
430- return ;
431- }
432-
433- PHP_V8_ISOLATE_FETCH_WITH_CHECK (getThis (), php_v8_isolate);
434- PHP_V8_ENTER_ISOLATE (php_v8_isolate);
435-
436- RETURN_LONG ((long ) isolate->ContextDisposedNotification ());
437- }
438-
439427static PHP_METHOD (V8Isolate, TerminateExecution) {
440428 if (zend_parse_parameters_none () == FAILURE) {
441429 return ;
@@ -563,9 +551,6 @@ ZEND_END_ARG_INFO()
563551ZEND_BEGIN_ARG_INFO_EX(arginfo_v8_isolate_LowMemoryNotification, ZEND_SEND_BY_VAL, ZEND_RETURN_VALUE, 0 )
564552ZEND_END_ARG_INFO()
565553
566- PHP_V8_ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(arginfo_v8_isolate_ContextDisposedNotification, ZEND_RETURN_VALUE, 0 , IS_LONG, 0 )
567- ZEND_END_ARG_INFO()
568-
569554// void method
570555ZEND_BEGIN_ARG_INFO_EX(arginfo_v8_isolate_TerminateExecution, ZEND_SEND_BY_VAL, ZEND_RETURN_VALUE, 0 )
571556ZEND_END_ARG_INFO()
@@ -611,7 +596,6 @@ static const zend_function_entry php_v8_isolate_methods[] = {
611596 PHP_ME (V8Isolate, ThrowException, arginfo_v8_isolate_ThrowException, ZEND_ACC_PUBLIC)
612597 PHP_ME (V8Isolate, IdleNotificationDeadline, arginfo_v8_isolate_IdleNotificationDeadline, ZEND_ACC_PUBLIC)
613598 PHP_ME (V8Isolate, LowMemoryNotification, arginfo_v8_isolate_LowMemoryNotification, ZEND_ACC_PUBLIC)
614- PHP_ME (V8Isolate, ContextDisposedNotification, arginfo_v8_isolate_ContextDisposedNotification, ZEND_ACC_PUBLIC)
615599
616600 PHP_ME (V8Isolate, TerminateExecution, arginfo_v8_isolate_TerminateExecution, ZEND_ACC_PUBLIC)
617601 PHP_ME (V8Isolate, IsExecutionTerminating, arginfo_v8_isolate_IsExecutionTerminating, ZEND_ACC_PUBLIC)
0 commit comments