diff options
author | Mathias Lafeldt <mathias.lafeldt@gmail.com> | 2022-09-26 21:52:16 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-26 21:52:16 +0200 |
commit | 4b01ef5c23973406c44e1178ad11afb779f5c5df (patch) | |
tree | af6585554a28ded70f090d146f9692ee47808fb4 /cli/tsc.rs | |
parent | c7dd842f84268985e8701c67a9ea2607c13c9ae1 (diff) |
chore: use Rust 1.64.0 (#16035)
Diffstat (limited to 'cli/tsc.rs')
-rw-r--r-- | cli/tsc.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cli/tsc.rs b/cli/tsc.rs index 54989a4ed..1951c5a10 100644 --- a/cli/tsc.rs +++ b/cli/tsc.rs @@ -84,7 +84,7 @@ macro_rules! inc { /// Contains static assets that are not preloaded in the compiler snapshot. pub static STATIC_ASSETS: Lazy<HashMap<&'static str, &'static str>> = Lazy::new(|| { - (&[ + ([ ( "lib.dom.asynciterable.d.ts", inc!("lib.dom.asynciterable.d.ts"), @@ -112,9 +112,9 @@ pub static STATIC_ASSETS: Lazy<HashMap<&'static str, &'static str>> = inc!("lib.webworker.iterable.d.ts"), ), ]) - .iter() - .cloned() - .collect() + .iter() + .cloned() + .collect() }); /// A structure representing stats from a type check operation for a graph. |