diff options
author | Kitson Kelly <me@kitsonkelly.com> | 2020-09-14 22:27:44 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-14 14:27:44 +0200 |
commit | a6f34d47222ad7cc40519bd95a58ae773d1fe656 (patch) | |
tree | 462618f8013501abcc231ea1316783e173db7ba0 /cli/info.rs | |
parent | e688a701e20cbed8908b4fb3629a554dc75b4e5b (diff) |
refactor: use ParsedModule and improve MediaTypes enum (#7456)
Diffstat (limited to 'cli/info.rs')
-rw-r--r-- | cli/info.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/info.rs b/cli/info.rs index c876c57d5..f997fbdea 100644 --- a/cli/info.rs +++ b/cli/info.rs @@ -349,8 +349,8 @@ pub fn human_size(bytse: f64) -> String { #[cfg(test)] mod test { use super::*; + use crate::ast::Location; use crate::module_graph::ImportDescriptor; - use crate::swc_util::Location; use crate::MediaType; #[test] |