diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2022-03-29 03:48:29 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-29 03:48:29 +0200 |
commit | 381d565acf974b0eab2a9b7fdcf8f9372cad0c33 (patch) | |
tree | e6183cfdb613b7a20cdaf285744e6cba0273f467 /cli/ops/runtime_compiler.rs | |
parent | 5a6a1eeb3918985ab003fd8d87faebb76410a242 (diff) |
refactor(flags): rename CheckFlag to TypecheckMode (#14111)
Diffstat (limited to 'cli/ops/runtime_compiler.rs')
-rw-r--r-- | cli/ops/runtime_compiler.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/ops/runtime_compiler.rs b/cli/ops/runtime_compiler.rs index 8c02190c0..372d53468 100644 --- a/cli/ops/runtime_compiler.rs +++ b/cli/ops/runtime_compiler.rs @@ -245,7 +245,7 @@ async fn op_emit( Arc::new(RwLock::new(graph.as_ref().into())), cache.as_mut_cacher(), emit::CheckOptions { - check: flags::CheckFlag::All, + typecheck_mode: flags::TypecheckMode::All, debug, emit_with_diagnostics: true, maybe_config_specifier: None, @@ -268,7 +268,7 @@ async fn op_emit( Arc::new(RwLock::new(graph.as_ref().into())), cache.as_mut_cacher(), emit::CheckOptions { - check: flags::CheckFlag::All, + typecheck_mode: flags::TypecheckMode::All, debug, emit_with_diagnostics: true, maybe_config_specifier: None, |