diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2022-05-20 16:40:55 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-20 16:40:55 -0400 |
commit | 1fcecb6789c3f111bc1554766ba9347afcfd02dc (patch) | |
tree | 19cd1b121412b992994b2fe4bea0463793d3986e /cli/graph_util.rs | |
parent | e7c894e8f54ebd2d9fd61c97a265906ac54e2068 (diff) |
refactor: upgrade to deno_ast 0.15 (#14680)
Diffstat (limited to 'cli/graph_util.rs')
-rw-r--r-- | cli/graph_util.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/graph_util.rs b/cli/graph_util.rs index f2063108f..533c9a493 100644 --- a/cli/graph_util.rs +++ b/cli/graph_util.rs @@ -36,7 +36,7 @@ pub fn contains_specifier( #[allow(clippy::large_enum_variant)] pub enum ModuleEntry { Module { - code: Arc<String>, + code: Arc<str>, dependencies: BTreeMap<String, Dependency>, media_type: MediaType, /// Whether or not this is a JS/JSX module with a `@ts-check` directive. |