| Index: runtime/vm/debugger_dbc.cc
|
| diff --git a/runtime/vm/debugger_dbc.cc b/runtime/vm/debugger_dbc.cc
|
| index b808967c92aa5e8ac1914556879ccacdeda72c36..83046771b12c4a651c6dc78469d30b3afb5548e6 100644
|
| --- a/runtime/vm/debugger_dbc.cc
|
| +++ b/runtime/vm/debugger_dbc.cc
|
| @@ -35,7 +35,7 @@ void CodeBreakpoint::PatchCode() {
|
| const Code& code = Code::Handle(code_);
|
| const Instructions& instrs = Instructions::Handle(code.instructions());
|
| {
|
| - WritableInstructionsScope writable(instrs.PayloadStart(), instrs.size());
|
| + WritableInstructionsScope writable(instrs.PayloadStart(), instrs.Size());
|
| saved_value_ = *CallInstructionFromReturnAddress(pc_);
|
| switch (breakpoint_kind_) {
|
| case RawPcDescriptors::kIcCall:
|
| @@ -77,7 +77,7 @@ void CodeBreakpoint::RestoreCode() {
|
| const Code& code = Code::Handle(code_);
|
| const Instructions& instrs = Instructions::Handle(code.instructions());
|
| {
|
| - WritableInstructionsScope writable(instrs.PayloadStart(), instrs.size());
|
| + WritableInstructionsScope writable(instrs.PayloadStart(), instrs.Size());
|
| switch (breakpoint_kind_) {
|
| case RawPcDescriptors::kIcCall:
|
| case RawPcDescriptors::kUnoptStaticCall:
|
|
|