diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2021-06-10 16:18:13 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-10 16:18:13 +0200 |
commit | fe1149592058c6206a037d962a6d071d5aa1d7c9 (patch) | |
tree | b8ec9a2003c0b5d1db0d95c4835fb5bc0bf9f543 /cli/main.rs | |
parent | 6091ea098a86cafb38aed3228a64ad96a046c817 (diff) |
refactor: use join instead of format! (#10921)
Diffstat (limited to 'cli/main.rs')
-rw-r--r-- | cli/main.rs | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/cli/main.rs b/cli/main.rs index 5827203ce..3354f4399 100644 --- a/cli/main.rs +++ b/cli/main.rs @@ -329,8 +329,7 @@ fn print_cache_info( } pub fn get_types(unstable: bool) -> String { - let mut types = format!( - "{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}", + let mut types = vec![ crate::tsc::DENO_NS_LIB, crate::tsc::DENO_CONSOLE_LIB, crate::tsc::DENO_URL_LIB, @@ -343,13 +342,13 @@ pub fn get_types(unstable: bool) -> String { crate::tsc::DENO_BROADCAST_CHANNEL_LIB, crate::tsc::SHARED_GLOBALS_LIB, crate::tsc::WINDOW_LIB, - ); + ]; if unstable { - types.push_str(&format!("\n{}", crate::tsc::UNSTABLE_NS_LIB,)); + types.push(crate::tsc::UNSTABLE_NS_LIB); } - types + types.join("\n") } async fn compile_command( |