[vm/concurrency] Remove unused call into debugger

Change-Id: Ie319c2469e5250f8234f994f1bdbc8767435d5be
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/170900
Reviewed-by: Alexander Aprelev <aam@google.com>
Commit-Queue: Martin Kustermann <kustermann@google.com>
This commit is contained in:
Martin Kustermann 2020-11-09 15:10:49 +00:00 committed by commit-bot@chromium.org
parent 785c3258f6
commit 7aca8bf7cb
3 changed files with 0 additions and 5 deletions

View file

@ -1555,8 +1555,6 @@ void Debugger::Shutdown() {
}
}
void Debugger::OnIsolateRunnable() {}
bool Debugger::SetupStepOverAsyncSuspension(const char** error) {
ActivationFrame* top_frame = TopDartFrame();
if (!IsAtAsyncJump(top_frame)) {

View file

@ -470,8 +470,6 @@ class Debugger {
void NotifyIsolateCreated();
void Shutdown();
void OnIsolateRunnable();
void NotifyCompilation(const Function& func);
void NotifyDoneLoading();

View file

@ -2061,7 +2061,6 @@ const char* Isolate::MakeRunnable() {
set_is_runnable(true);
#ifndef PRODUCT
if (!Isolate::IsSystemIsolate(this)) {
debugger()->OnIsolateRunnable();
if (FLAG_pause_isolates_on_unhandled_exceptions) {
debugger()->SetExceptionPauseInfo(kPauseOnUnhandledExceptions);
}