Chromium Code Reviews| 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>>> |
|
dgozman
2016/11/16 19:00:09
Let's have a comment describing this structure at
Clemens Hammacher
2016/11/16 20:31:30
Ups, I thought I did this, but it was only on the
|
| + DisassembleWasmFunction(Isolate* isolate, v8::Local<v8::Object> script, |
| + int function_index); |
| }; |
| } // namespace v8 |