| Index: runtime/vm/object.h
|
| diff --git a/runtime/vm/object.h b/runtime/vm/object.h
|
| index 6bef907ae75b4b85787590a7f2be10f3ed827d71..9eb987d19117f5d39b41f3463853a5ec5596e477 100644
|
| --- a/runtime/vm/object.h
|
| +++ b/runtime/vm/object.h
|
| @@ -3093,6 +3093,8 @@ class LocalVarDescriptors : public Object {
|
|
|
| static RawLocalVarDescriptors* New(intptr_t num_variables);
|
|
|
| + static const char* KindToStr(intptr_t kind);
|
| +
|
| private:
|
| FINAL_HEAP_OBJECT_IMPLEMENTATION(LocalVarDescriptors, Object);
|
| friend class Class;
|
| @@ -3146,7 +3148,7 @@ class PcDescriptors : public Object {
|
|
|
| static void PrintHeaderString();
|
|
|
| - void PrintToJSONObject(JSONObject* jsobj) const;
|
| + void PrintToJSONObject(JSONObject* jsobj, bool ref) const;
|
|
|
| // We would have a VisitPointers function here to traverse the
|
| // pc descriptors table to visit objects if any in the table.
|
|
|