Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(233)

Unified Diff: src/debug/debug-interface.h

Issue 2493773003: [inspector] Introduce translation of wasm frames (Closed)
Patch Set: Address Alexey's comments Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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

Powered by Google App Engine
This is Rietveld 408576698