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

Unified Diff: runtime/vm/json_stream.h

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: gen js 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.h
diff --git a/runtime/vm/json_stream.h b/runtime/vm/json_stream.h
index 8966b045d5bad3322cd2493ae5ccdf620e5d2a6e..7ed98f0d96407aacd25fc3a698ea8bbfc8728bae 100644
--- a/runtime/vm/json_stream.h
+++ b/runtime/vm/json_stream.h
@@ -62,7 +62,6 @@ class JSONStream : ValueObject {
void PrintValue(const char* s);
void PrintfValue(const char* format, ...) PRINTF_ATTRIBUTE(2, 3);
void PrintValue(const Object& o, bool ref = true);
- void PrintValue(const Field& f, const Instance& instance, bool ref = true);
void PrintValue(SourceBreakpoint* bpt);
void PrintPropertyBool(const char* name, bool b);
@@ -157,12 +156,6 @@ class JSONArray : public ValueObject {
void AddValue(const Object& obj, bool ref = true) const {
stream_->PrintValue(obj, ref);
}
- // Print a field bound to a value. Value is looked up from 'instance'.
- void AddValue(const Field& field,
- const Instance& instance,
- bool ref = true) const {
- stream_->PrintValue(field, instance, ref);
- }
void AddValue(SourceBreakpoint* bpt) const {
stream_->PrintValue(bpt);
}
« no previous file with comments | « runtime/bin/vmservice/client/lib/src/observatory_elements/stack_frame.html ('k') | runtime/vm/json_stream.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698