Index: src/debug/debug-interface.h |
diff --git a/src/debug/debug-interface.h b/src/debug/debug-interface.h |
index 443ed4232fe436b9f815895a29fe1d19ab41394c..6556900a10a70eafcdf6b61d1f0ddd1ca7d7eb1b 100644 |
--- a/src/debug/debug-interface.h |
+++ b/src/debug/debug-interface.h |
@@ -202,6 +202,10 @@ class DebugInterface { |
*/ |
static void GetLoadedScripts(Isolate* isolate, |
PersistentValueVector<Script>& scripts); |
+ |
+ static std::pair<std::string, std::vector<std::tuple<uint32_t, int, int>>> |
titzer
2016/11/11 10:59:02
Can we introduce a struct for this type, instead o
dgozman
2016/11/11 21:50:34
+1
It will also help with describing what this com
Clemens Hammacher
2016/11/16 11:36:28
As discussed offline with Ben:
Introducing a struc
kozy
2016/11/16 16:13:41
We already include debug-interface.h in debug.h an
|
+ DisassembleWasmFunction(Isolate* isolate, v8::Local<v8::Object> script, |
+ int function_index); |
}; |
} // namespace v8 |