Index: src/inspector/v8-debugger.h |
diff --git a/src/inspector/v8-debugger.h b/src/inspector/v8-debugger.h |
index 2191b007bef3a5f7f8cc2b23b9a0f2c5e1b4b8d2..0f966d7e2f5b4a154a0a287d0c307d5c584d9c4c 100644 |
--- a/src/inspector/v8-debugger.h |
+++ b/src/inspector/v8-debugger.h |
@@ -13,6 +13,7 @@ |
#include "src/inspector/protocol/Forward.h" |
#include "src/inspector/protocol/Runtime.h" |
#include "src/inspector/v8-debugger-script.h" |
+#include "src/inspector/wasm-translation.h" |
#include "include/v8-inspector.h" |
@@ -94,6 +95,8 @@ class V8Debugger { |
V8InspectorImpl* inspector() { return m_inspector; } |
+ WasmTranslation* wasmTranslation() { return &m_wasmTranslation; } |
+ |
private: |
void compileDebuggerScript(); |
v8::MaybeLocal<v8::Value> callDebuggerMethod(const char* functionName, |
@@ -149,6 +152,8 @@ class V8Debugger { |
v8::DebugInterface::ExceptionBreakState m_pauseOnExceptionsState; |
+ WasmTranslation m_wasmTranslation; |
+ |
DISALLOW_COPY_AND_ASSIGN(V8Debugger); |
}; |