diff options
| author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2020-08-19 19:13:43 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-08-19 19:13:43 +0200 |
| commit | be1e7ab5320c0a110998818c3916c79b39710613 (patch) | |
| tree | 91b54be5cc70507ce65cf1846c953938a3f234b2 /cli/module_graph.rs | |
| parent | 1507a8cf2d8bce8c3596583b995fea4914a99203 (diff) | |
refactor: move cli/doc/ to separate crate (#7103)
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; |
