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