| Index: runtime/vm/json_stream.cc
|
| diff --git a/runtime/vm/json_stream.cc b/runtime/vm/json_stream.cc
|
| index 5c4ec91a760bae29cdd5647fdebffb6ca686a983..4962f0317b4365cd9abe13b7f6618925a0e86fbd 100644
|
| --- a/runtime/vm/json_stream.cc
|
| +++ b/runtime/vm/json_stream.cc
|
| @@ -242,6 +242,12 @@ void JSONStream::PrintValue(SourceBreakpoint* bpt) {
|
| }
|
|
|
|
|
| +void JSONStream::PrintValue(Isolate* isolate, bool ref) {
|
| + PrintCommaIfNeeded();
|
| + isolate->PrintToJSONStream(this, ref);
|
| +}
|
| +
|
| +
|
| void JSONStream::PrintPropertyBool(const char* name, bool b) {
|
| PrintPropertyName(name);
|
| PrintValueBool(b);
|
|
|