Skip to content

Commit 94a9061

Browse files
committed
Handle kPausePostRequest in C++ debugger api implementation
- Fixes flutter/flutter#6890 BUG= [email protected] Review URL: https://codereview.chromium.org/2515403003 .
1 parent 640b5ca commit 94a9061

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

runtime/vm/debugger_api_impl.cc

+2
Original file line numberDiff line numberDiff line change
@@ -173,6 +173,8 @@ static void DebuggerEventHandler(ServiceEvent* event) {
173173
if (isolate_event_handler != NULL) {
174174
(*isolate_event_handler)(event->isolate_id(), kShutdown);
175175
}
176+
} else if (event->kind() == ServiceEvent::kPausePostRequest) {
177+
// Ignore.
176178
} else {
177179
UNIMPLEMENTED();
178180
}

0 commit comments

Comments
 (0)