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

Unified Diff: runtime/vm/json_stream.cc

Issue 164183003: Add expandable instances and lists to the vm service. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 10 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 8dd4a01915e76c6af8a26b6658f64043b91b84d9..42cff75cf011ad99d6f3bb27e9bea6523aaaa7b7 100644
--- a/runtime/vm/json_stream.cc
+++ b/runtime/vm/json_stream.cc
@@ -127,14 +127,6 @@ void JSONStream::PrintValue(const Object& o, bool ref) {
}
-void JSONStream::PrintValue(const Field& field,
- const Instance& instance,
- bool ref) {
- PrintCommaIfNeeded();
- field.PrintToJSONStreamWithInstance(this, instance, ref);
-}
-
-
void JSONStream::PrintValue(SourceBreakpoint* bpt) {
PrintCommaIfNeeded();
bpt->PrintToJSONStream(this);

Powered by Google App Engine
This is Rietveld 408576698