| Index: runtime/vm/object.cc
|
| diff --git a/runtime/vm/object.cc b/runtime/vm/object.cc
|
| index 18d86ff495e8ec07712b1e10c5eed3efe6babd65..5149eaa3437e59c498823929f53b7e82cba9184a 100644
|
| --- a/runtime/vm/object.cc
|
| +++ b/runtime/vm/object.cc
|
| @@ -4205,6 +4205,7 @@ void Class::PrintJSONImpl(JSONStream* stream, bool ref) const {
|
| jsobj.AddProperty("_finalized", is_finalized());
|
| jsobj.AddProperty("_implemented", is_implemented());
|
| jsobj.AddProperty("_patch", is_patch());
|
| + jsobj.AddProperty("_traceAllocations", trace_allocation());
|
| const Class& superClass = Class::Handle(SuperClass());
|
| if (!superClass.IsNull()) {
|
| jsobj.AddProperty("super", superClass);
|
|
|