Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1823)

Unified Diff: runtime/vm/json_stream.cc

Issue 381383010: Add breakpoints and single-stepping to Observatory. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: fix bugs, gen js Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: runtime/vm/json_stream.cc
diff --git a/runtime/vm/json_stream.cc b/runtime/vm/json_stream.cc
index 2726c8a38fbef922ebe45c4b76ed57d36d504344..d72ff5bd765090a135348fd253d7c6b2b676e414 100644
--- a/runtime/vm/json_stream.cc
+++ b/runtime/vm/json_stream.cc
@@ -307,6 +307,12 @@ void JSONStream::PrintProperty(const char* name, const DebuggerEvent* event) {
}
+void JSONStream::PrintProperty(const char* name, SourceBreakpoint* bpt) {
+ PrintPropertyName(name);
+ PrintValue(bpt);
+}
+
+
void JSONStream::PrintProperty(const char* name, Isolate* isolate) {
PrintPropertyName(name);
PrintValue(isolate);

Powered by Google App Engine
This is Rietveld 408576698