| Index: runtime/vm/object.h
|
| ===================================================================
|
| --- runtime/vm/object.h (revision 18767)
|
| +++ runtime/vm/object.h (working copy)
|
| @@ -2612,6 +2612,10 @@
|
| const Instructions& instr = Instructions::Handle(instructions());
|
| return instr.size();
|
| }
|
| + RawArray* ObjectPool() const {
|
| + const Instructions& instr = Instructions::Handle(instructions());
|
| + return instr.object_pool();
|
| + }
|
| bool ContainsInstructionAt(uword addr) const {
|
| const Instructions& instr = Instructions::Handle(instructions());
|
| const uword offset = addr - instr.EntryPoint();
|
|
|