| Index: runtime/vm/debugger.cc
|
| diff --git a/runtime/vm/debugger.cc b/runtime/vm/debugger.cc
|
| index 284a2e14ed4fd0dbd8cc93650ea92902e312778d..46cfe6ff084f3d41d60c0e5bfd14e5b84cba0c32 100644
|
| --- a/runtime/vm/debugger.cc
|
| +++ b/runtime/vm/debugger.cc
|
| @@ -1368,7 +1368,8 @@ bool Debugger::IsDebuggable(const Function& func) {
|
| RawFunction::Kind fkind = func.kind();
|
| if ((fkind == RawFunction::kImplicitGetter) ||
|
| (fkind == RawFunction::kImplicitSetter) ||
|
| - (fkind == RawFunction::kConstImplicitGetter)) {
|
| + (fkind == RawFunction::kConstImplicitGetter) ||
|
| + (fkind == RawFunction::kMethodExtractor)) {
|
| return false;
|
| }
|
| const Class& cls = Class::Handle(func.Owner());
|
|
|