| Index: runtime/vm/object.cc
|
| diff --git a/runtime/vm/object.cc b/runtime/vm/object.cc
|
| index 5c138fe05b5bbd4ee5c938593c71a2df3bfcc076..c1311238e72b613bf07517b72a78fa65ca638022 100644
|
| --- a/runtime/vm/object.cc
|
| +++ b/runtime/vm/object.cc
|
| @@ -18003,7 +18003,7 @@ void Bool::PrintJSONImpl(JSONStream* stream, bool ref) const {
|
| JSONObject jsobj(stream);
|
| jsobj.AddProperty("type", JSONType(ref));
|
| jsobj.AddPropertyF("id", "objects/bool-%s", str);
|
| - class Class& cls = Class::Handle(this->clazz());
|
| + const Class& cls = Class::Handle(this->clazz());
|
| jsobj.AddProperty("class", cls);
|
| jsobj.AddPropertyF("valueAsString", "%s", str);
|
| }
|
|
|