| Index: src/debug/debug.h
|
| diff --git a/src/debug/debug.h b/src/debug/debug.h
|
| index eb2708c32f36ee802463e529b07fb57b2d171b54..839e15921636ab4aea1602670b49aa26eb05172e 100644
|
| --- a/src/debug/debug.h
|
| +++ b/src/debug/debug.h
|
| @@ -16,8 +16,8 @@
|
| #include "src/factory.h"
|
| #include "src/flags.h"
|
| #include "src/frames.h"
|
| -#include "src/interpreter/source-position-table.h"
|
| #include "src/runtime/runtime.h"
|
| +#include "src/source-position-table.h"
|
| #include "src/string-stream.h"
|
| #include "src/v8threads.h"
|
|
|
| @@ -178,6 +178,8 @@ class BreakLocation {
|
| RelocInfo* rinfo() { return reloc_iterator_.rinfo(); }
|
|
|
| RelocIterator reloc_iterator_;
|
| + SourcePositionTableIterator source_position_iterator_;
|
| + int start_position_;
|
| DISALLOW_COPY_AND_ASSIGN(CodeIterator);
|
| };
|
|
|
| @@ -191,13 +193,13 @@ class BreakLocation {
|
| void Next() override;
|
|
|
| int code_offset() override {
|
| - return source_position_iterator_.bytecode_offset();
|
| + return source_position_iterator_.code_offset();
|
| }
|
|
|
| private:
|
| DebugBreakType GetDebugBreakType();
|
|
|
| - interpreter::SourcePositionTableIterator source_position_iterator_;
|
| + SourcePositionTableIterator source_position_iterator_;
|
| BreakLocatorType break_locator_type_;
|
| int start_position_;
|
| DISALLOW_COPY_AND_ASSIGN(BytecodeArrayIterator);
|
|
|