| 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;
|
| }
|
|
|
|
|