diff options
Diffstat (limited to 'cli/module_graph.rs')
-rw-r--r-- | cli/module_graph.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/module_graph.rs b/cli/module_graph.rs index 3c07acd3b..5b15c0cd4 100644 --- a/cli/module_graph.rs +++ b/cli/module_graph.rs @@ -1,6 +1,5 @@ // Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. use crate::checksum; -use crate::doc::Location; use crate::file_fetcher::map_file_extension; use crate::file_fetcher::SourceFile; use crate::file_fetcher::SourceFileFetcher; @@ -8,6 +7,7 @@ use crate::import_map::ImportMap; use crate::msg::MediaType; use crate::op_error::OpError; use crate::permissions::Permissions; +use crate::swc_util::Location; use crate::tsc::pre_process_file; use crate::tsc::ImportDesc; use crate::tsc::TsReferenceDesc; |