| Index: include/v8.h
|
| diff --git a/include/v8.h b/include/v8.h
|
| index aa077cda239ab935d0188da30752f609be1465a4..cf9e4ca3ebf1e7bb753a4c0bb1eb52dbc75669cd 100644
|
| --- a/include/v8.h
|
| +++ b/include/v8.h
|
| @@ -4528,15 +4528,12 @@ typedef void (*FunctionEntryHook)(uintptr_t function,
|
| uintptr_t return_addr_location);
|
|
|
| /**
|
| - * A JIT code event is issued each time code is added, moved or removed.
|
| - *
|
| - * \note removal events are not currently issued.
|
| + * A JIT code event is issued each time code is added or moved.
|
| */
|
| struct JitCodeEvent {
|
| enum EventType {
|
| CODE_ADDED,
|
| CODE_MOVED,
|
| - CODE_REMOVED,
|
| CODE_ADD_LINE_POS_INFO,
|
| CODE_START_LINE_INFO_RECORDING,
|
| CODE_END_LINE_INFO_RECORDING
|
| @@ -4658,7 +4655,7 @@ class V8_EXPORT Isolate {
|
|
|
| /**
|
| * Allows the host application to provide the address of a function that is
|
| - * notified each time code is added, moved or removed.
|
| + * notified each time code is added or moved.
|
| */
|
| JitCodeEventHandler code_event_handler;
|
|
|
| @@ -5166,11 +5163,11 @@ class V8_EXPORT Isolate {
|
|
|
| /**
|
| * Allows the host application to provide the address of a function that is
|
| - * notified each time code is added, moved or removed.
|
| + * notified each time code is added or moved.
|
| *
|
| * \param options options for the JIT code event handler.
|
| * \param event_handler the JIT code event handler, which will be invoked
|
| - * each time code is added, moved or removed.
|
| + * each time code is added or moved.
|
| * \note \p event_handler won't get notified of existent code.
|
| * \note since code removal notifications are not currently issued, the
|
| * \p event_handler may get notifications of code that overlaps earlier
|
|
|