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

Unified Diff: src/isolate.cc

Issue 2806373005: [v8] v8::StackTrace::AsArray returns correct array (Closed)
Patch Set: removed redundant semicolon 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
« src/api.cc ('K') | « src/api.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 c3d2ed3d3a31e60a4a121078518ed71ea5d742c1..e0cbd91d53b8bbb602edbfd3ed93dcd96c886ca4 100644
--- a/src/isolate.cc
+++ b/src/isolate.cc
@@ -701,6 +701,7 @@ class CaptureStackTraceHelper {
frame->set_is_constructor(summ.is_constructor());
}
frame->set_is_wasm(false);
+ frame->set_options(options_);
return frame;
}
@@ -730,6 +731,7 @@ class CaptureStackTraceHelper {
info->set_script_id(summ.script()->id());
}
info->set_is_wasm(true);
+ info->set_options(options_);
return info;
}
« src/api.cc ('K') | « src/api.cc ('k') | src/objects.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698