| Index: runtime/vm/object.h
|
| diff --git a/runtime/vm/object.h b/runtime/vm/object.h
|
| index cf302d8f7e55807638131f9c46a21a040ebcb393..dfcec8d833f4f6cb33f2e0f7300a61e255c163cc 100644
|
| --- a/runtime/vm/object.h
|
| +++ b/runtime/vm/object.h
|
| @@ -8442,9 +8442,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;
|
|
|