diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2018-05-28 12:21:06 -0400 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2018-05-28 12:21:06 -0400 |
commit | 659f7b043318775f4f5ea7419082ff7f411963ff (patch) | |
tree | 8ee27041de307eb2d8944a8e47594d777d629083 /main.go | |
parent | 71c4f5e5bb5600229efb29d014af8c3a84356682 (diff) |
Fix 007_stack_trace.ts by removing --abort-on-uncaught-exception
Diffstat (limited to 'main.go')
-rw-r--r-- | main.go | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -24,7 +24,9 @@ func FlagsParse() []string { if *flagV8Options { args = append(args, "--help") } - args = append(args, "--abort-on-uncaught-exception") + // Adding this causes testdata/007_stack_trace.ts to fail without a + // stacktrace. + // args = append(args, "--abort-on-uncaught-exception") args = v8worker2.SetFlags(args) return args |