| Index: runtime/vm/json_stream.cc
|
| diff --git a/runtime/vm/json_stream.cc b/runtime/vm/json_stream.cc
|
| index cf5138cc6484ed7b488590e884ff6c154aeba25d..57a675d77b2fdd87fc8b35d90bdebe24f5eb0f6d 100644
|
| --- a/runtime/vm/json_stream.cc
|
| +++ b/runtime/vm/json_stream.cc
|
| @@ -237,19 +237,19 @@ void JSONStream::PrintfValue(const char* format, ...) {
|
|
|
| void JSONStream::PrintValue(const Object& o, bool ref) {
|
| PrintCommaIfNeeded();
|
| - o.PrintToJSONStream(this, ref);
|
| + o.PrintJSON(this, ref);
|
| }
|
|
|
|
|
| void JSONStream::PrintValue(SourceBreakpoint* bpt) {
|
| PrintCommaIfNeeded();
|
| - bpt->PrintToJSONStream(this);
|
| + bpt->PrintJSON(this);
|
| }
|
|
|
|
|
| void JSONStream::PrintValue(Isolate* isolate, bool ref) {
|
| PrintCommaIfNeeded();
|
| - isolate->PrintToJSONStream(this, ref);
|
| + isolate->PrintJSON(this, ref);
|
| }
|
|
|
|
|
|
|