Index: runtime/vm/isolate.cc |
diff --git a/runtime/vm/isolate.cc b/runtime/vm/isolate.cc |
index 2432df990bfa34e8945bc702086c827c4bef13c6..588cd2d7f7acf40f7eb6276a3c5fdd67ad54582d 100644 |
--- a/runtime/vm/isolate.cc |
+++ b/runtime/vm/isolate.cc |
@@ -1636,6 +1636,11 @@ void Isolate::PrintJSON(JSONStream* stream, bool ref) { |
JSONArray breakpoints(&jsobj, "breakpoints"); |
debugger()->PrintBreakpointsToJSONArray(&breakpoints); |
} |
+ |
+ { |
+ JSONObject jssettings(&jsobj, "_debuggerSettings"); |
+ debugger()->PrintSettingsToJSONObject(&jssettings); |
+ } |
} |