diff options
author | Luca Casonato <hello@lcas.dev> | 2021-07-23 16:31:16 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-23 16:31:16 +0200 |
commit | 28f2f02b7a72154458762c0c152fe598c489e4c7 (patch) | |
tree | 356d40397cf3bf5bb5b46519df5ca28b6269a63c /cli/tools/standalone.rs | |
parent | 8b34f07bb000a16b60b119ee24f5c0b4a5f7f937 (diff) |
feat: add --enable-testing-features-do-not-use (#11499)
This flag does nothing yet. It is added in preparation for the addition
of classic workers.
Diffstat (limited to 'cli/tools/standalone.rs')
-rw-r--r-- | cli/tools/standalone.rs | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/cli/tools/standalone.rs b/cli/tools/standalone.rs index ab093eec1..259c61222 100644 --- a/cli/tools/standalone.rs +++ b/cli/tools/standalone.rs @@ -205,22 +205,23 @@ pub fn compile_to_runtime_flags( allow_read: flags.allow_read, allow_run: flags.allow_run, allow_write: flags.allow_write, - cache_blocklist: vec![], ca_file: flags.ca_file, + cache_blocklist: vec![], cached_only: false, config_path: None, coverage_dir: flags.coverage_dir, + enable_testing_features: false, ignore: vec![], import_map_path: None, - inspect: None, inspect_brk: None, + inspect: None, location: flags.location, - lock: None, lock_write: false, + lock: None, log_level: flags.log_level, no_check: false, - prompt: flags.prompt, no_remote: false, + prompt: flags.prompt, reload: false, repl: false, seed: flags.seed, |