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

Unified Diff: src/isolate.cc

Issue 2795103004: [inspector] introduced StackFrame::IsWasm flag (Closed)
Patch Set: rebased Created 3 years, 8 months 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
« no previous file with comments | « src/inspector/v8-stack-trace-impl.cc ('k') | src/objects.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/isolate.cc
diff --git a/src/isolate.cc b/src/isolate.cc
index c2674baa1875973405f1a17f0fb06598a3916c92..82ea67a0a91e2cbac551d0dd6e5c33fe8e600d33 100644
--- a/src/isolate.cc
+++ b/src/isolate.cc
@@ -679,6 +679,7 @@ class CaptureStackTraceHelper {
if (options_ & StackTrace::kIsConstructor) {
frame->set_is_constructor(summ.is_constructor());
}
+ frame->set_is_wasm(false);
return frame;
}
@@ -707,6 +708,7 @@ class CaptureStackTraceHelper {
if (options_ & StackTrace::kScriptId) {
info->set_script_id(summ.script()->id());
}
+ info->set_is_wasm(true);
return info;
}
« no previous file with comments | « src/inspector/v8-stack-trace-impl.cc ('k') | src/objects.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698