| Index: runtime/vm/object.h
|
| diff --git a/runtime/vm/object.h b/runtime/vm/object.h
|
| index f62859b23a36944cbf3c2fc5a3906e4aefb7990a..427cc7bcf951f8042becadac58e9177816d3d1c2 100644
|
| --- a/runtime/vm/object.h
|
| +++ b/runtime/vm/object.h
|
| @@ -8453,9 +8453,11 @@ class StackTrace : public Instance {
|
|
|
| RawFunction* FunctionAtFrame(intptr_t frame_index) const;
|
|
|
| + RawArray* code_array() const { return raw_ptr()->code_array_; }
|
| RawCode* CodeAtFrame(intptr_t frame_index) const;
|
| void SetCodeAtFrame(intptr_t frame_index, const Code& code) const;
|
|
|
| + RawArray* pc_offset_array() const { return raw_ptr()->pc_offset_array_; }
|
| RawSmi* PcOffsetAtFrame(intptr_t frame_index) const;
|
| void SetPcOffsetAtFrame(intptr_t frame_index, const Smi& pc_offset) const;
|
| void set_expand_inlined(bool value) const;
|
|
|