Index: src/debug/debug.cc |
diff --git a/src/debug/debug.cc b/src/debug/debug.cc |
index 6969c06a17d752797851f4d95dd68e49b1bfb9fc..393fadc72a88d49f511b2c481e04817e89504b59 100644 |
--- a/src/debug/debug.cc |
+++ b/src/debug/debug.cc |
@@ -1866,22 +1866,19 @@ void Debug::SetAsyncTaskListener(debug::AsyncTaskListener listener, |
UpdateState(); |
} |
+void Debug::SetCompileEventListener(debug::CompileEventListener listener, |
+ void* data) { |
+ compile_event_listener_ = listener; |
+ compile_event_listener_data_ = data; |
+ UpdateState(); |
+} |
+ |
void Debug::OnAsyncTaskEvent(debug::PromiseDebugActionType type, int id) { |
if (in_debug_scope() || ignore_events()) return; |
if (async_task_listener_) { |
async_task_listener_(type, id, async_task_listener_data_); |
- // There are three types of event listeners: C++ message_handler, |
- // JavaScript event listener and C++ event listener. |
- // Currently inspector still uses C++ event listener and installs |
- // more specific event listeners for part of events. Calling of |
- // C++ event listener is redundant when more specific event listener |
- // is presented. Other clients can install JavaScript event listener |
- // (e.g. some of NodeJS module). |
- bool non_inspector_listener_exists = |
- message_handler_ != nullptr || |
- (event_listener_.is_null() && !event_listener_->IsForeign()); |
- if (!non_inspector_listener_exists) return; |
+ if (!non_inspector_listener_exists()) return; |
} |
HandleScope scope(isolate_); |
@@ -1967,6 +1964,13 @@ void Debug::ProcessCompileEvent(v8::DebugEvent event, Handle<Script> script) { |
script->type() != i::Script::TYPE_WASM) { |
return; |
} |
+ if (compile_event_listener_) { |
+ compile_event_listener_(ToApiHandle<debug::Script>(script), |
+ event != v8::AfterCompile, |
+ compile_event_listener_data_); |
+ if (!non_inspector_listener_exists()) return; |
+ } |
+ |
SuppressDebug while_processing(this); |
bool in_nested_debug_scope = in_debug_scope(); |
@@ -2167,7 +2171,8 @@ void Debug::SetMessageHandler(v8::Debug::MessageHandler handler) { |
void Debug::UpdateState() { |
bool is_active = message_handler_ != nullptr || !event_listener_.is_null() || |
- async_task_listener_ != nullptr; |
+ async_task_listener_ != nullptr || |
+ compile_event_listener_ != nullptr; |
if (is_active || in_debug_scope()) { |
// Note that the debug context could have already been loaded to |
// bootstrap test cases. |