Index: src/wasm/wasm-debug.cc |
diff --git a/src/wasm/wasm-debug.cc b/src/wasm/wasm-debug.cc |
index 0fe0ae98a7883697c2a724140d829283bab3d627..e00f3b87a813f5e36b8cd409acc8bb9ecfbcd2dd 100644 |
--- a/src/wasm/wasm-debug.cc |
+++ b/src/wasm/wasm-debug.cc |
@@ -36,3 +36,16 @@ WasmDebugInfo *WasmDebugInfo::cast(Object *object) { |
WasmInstanceObject *WasmDebugInfo::wasm_instance() { |
return WasmInstanceObject::cast(get(kInstance)); |
} |
+ |
+Object *WasmDebugInfo::GetInterpreterArgBuffer(Handle<WasmDebugInfo> debug_info, |
+ int func_index) { |
+ // TODO(clemensh): Implement this. |
+ UNIMPLEMENTED(); |
+ return nullptr; |
+} |
+ |
+void WasmDebugInfo::RunInterpreter(Handle<WasmDebugInfo> debug_info, |
+ int func_index) { |
+ // TODO(clemensh): Implement this. |
+ UNIMPLEMENTED(); |
+} |