| Index: src/frames.cc
|
| diff --git a/src/frames.cc b/src/frames.cc
|
| index 3df27632328c1146683b1eab301b40ece035299d..4ac44fc1aa631e01572c44d08e9e1cf9e8aa017f 100644
|
| --- a/src/frames.cc
|
| +++ b/src/frames.cc
|
| @@ -15,8 +15,8 @@
|
| #include "src/safepoint-table.h"
|
| #include "src/string-stream.h"
|
| #include "src/vm-state-inl.h"
|
| -#include "src/wasm/wasm-debug.h"
|
| #include "src/wasm/wasm-module.h"
|
| +#include "src/wasm/wasm-objects.h"
|
|
|
| namespace v8 {
|
| namespace internal {
|
| @@ -1518,8 +1518,8 @@ Script* WasmFrame::script() const {
|
| if (wasm::WasmIsAsmJs(*instance, isolate())) {
|
| return *wasm::GetAsmWasmScript(instance);
|
| }
|
| - Handle<wasm::WasmDebugInfo> debug_info = wasm::GetDebugInfo(instance);
|
| - return wasm::WasmDebugInfo::GetFunctionScript(debug_info, function_index());
|
| + Handle<WasmDebugInfo> debug_info = wasm::GetDebugInfo(instance);
|
| + return WasmDebugInfo::GetFunctionScript(debug_info, function_index());
|
| }
|
|
|
| int WasmFrame::position() const {
|
|
|