| Index: runtime/vm/object.cc
|
| diff --git a/runtime/vm/object.cc b/runtime/vm/object.cc
|
| index 8e8c18b0d747d9af7cf226aa75e811b88289070c..88802f36c21615825e4f9633767472c81503d68a 100644
|
| --- a/runtime/vm/object.cc
|
| +++ b/runtime/vm/object.cc
|
| @@ -14372,6 +14372,13 @@ void Instance::PrintJSONImpl(JSONStream* stream, bool ref) const {
|
| if (ref) {
|
| return;
|
| }
|
| + if (IsClosure()) {
|
| + Debugger* debugger = Isolate::Current()->debugger();
|
| + Breakpoint* bpt = debugger->BreakpointAtActivation(*this);
|
| + if (bpt != NULL) {
|
| + jsobj.AddProperty("_activationBreakpoint", bpt);
|
| + }
|
| + }
|
| }
|
|
|
|
|
|
|