@@ -424,18 +424,6 @@ static PHP_METHOD(V8Isolate, LowMemoryNotification) {
424
424
isolate->LowMemoryNotification ();
425
425
}
426
426
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
-
439
427
static PHP_METHOD (V8Isolate, TerminateExecution) {
440
428
if (zend_parse_parameters_none () == FAILURE) {
441
429
return ;
@@ -563,9 +551,6 @@ ZEND_END_ARG_INFO()
563
551
ZEND_BEGIN_ARG_INFO_EX(arginfo_v8_isolate_LowMemoryNotification, ZEND_SEND_BY_VAL, ZEND_RETURN_VALUE, 0 )
564
552
ZEND_END_ARG_INFO()
565
553
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
-
569
554
// void method
570
555
ZEND_BEGIN_ARG_INFO_EX(arginfo_v8_isolate_TerminateExecution, ZEND_SEND_BY_VAL, ZEND_RETURN_VALUE, 0 )
571
556
ZEND_END_ARG_INFO()
@@ -611,7 +596,6 @@ static const zend_function_entry php_v8_isolate_methods[] = {
611
596
PHP_ME (V8Isolate, ThrowException, arginfo_v8_isolate_ThrowException, ZEND_ACC_PUBLIC)
612
597
PHP_ME (V8Isolate, IdleNotificationDeadline, arginfo_v8_isolate_IdleNotificationDeadline, ZEND_ACC_PUBLIC)
613
598
PHP_ME (V8Isolate, LowMemoryNotification, arginfo_v8_isolate_LowMemoryNotification, ZEND_ACC_PUBLIC)
614
- PHP_ME (V8Isolate, ContextDisposedNotification, arginfo_v8_isolate_ContextDisposedNotification, ZEND_ACC_PUBLIC)
615
599
616
600
PHP_ME (V8Isolate, TerminateExecution, arginfo_v8_isolate_TerminateExecution, ZEND_ACC_PUBLIC)
617
601
PHP_ME (V8Isolate, IsExecutionTerminating, arginfo_v8_isolate_IsExecutionTerminating, ZEND_ACC_PUBLIC)
0 commit comments