diff options
author | Casper Beyer <caspervonb@pm.me> | 2020-12-21 21:04:25 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-21 14:04:25 +0100 |
commit | 3078fcf55a8aa04d26316ab353d84f2c9512bd47 (patch) | |
tree | 811793f89b88c7bb6294c92583237e7fb03ca46e /runtime/worker.rs | |
parent | d5ee168468a431140d2903e0a03ea0eeea491874 (diff) |
feat(unstable): record raw coverage into a directory (#8642)
Diffstat (limited to 'runtime/worker.rs')
-rw-r--r-- | runtime/worker.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/runtime/worker.rs b/runtime/worker.rs index adb525c4c..58a35cc95 100644 --- a/runtime/worker.rs +++ b/runtime/worker.rs @@ -87,6 +87,7 @@ impl MainWorker { } else { None }; + let should_break_on_first_statement = inspector.is_some() && options.should_break_on_first_statement; |