Chromium Code Reviews| Index: runtime/vm/object.cc |
| =================================================================== |
| --- runtime/vm/object.cc (revision 31995) |
| +++ runtime/vm/object.cc (working copy) |
| @@ -9863,6 +9863,11 @@ |
| } |
| +bool Code::HasBreakpoint() const { |
| + return Isolate::Current()->debugger()->HasBreakpoint(*this); |
| +} |
| + |
| + |
| RawDeoptInfo* Code::GetDeoptInfoAtPc(uword pc, intptr_t* deopt_reason) const { |
| ASSERT(is_optimized()); |
| const Instructions& instrs = Instructions::Handle(instructions()); |