diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2020-03-02 19:12:49 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-02 19:12:49 +0100 |
commit | cfe4369dedcdd885c60b8a5f6c89bc4bb7e5e1e8 (patch) | |
tree | aa1ac2fc0b5224f7a53f27c76d7720a844e04189 /cli/ops/compiler.rs | |
parent | 4a47ffa5c455be213523cb1a7211a0a454b5fcf8 (diff) |
refactor: rename structures related to Modules (#4217)
* rename structures related to ES Modules; add "Modules" prefix
* remove unneeded Unpin trait requirement for "ModuleLoader"
Diffstat (limited to 'cli/ops/compiler.rs')
-rw-r--r-- | cli/ops/compiler.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/ops/compiler.rs b/cli/ops/compiler.rs index 9e8895519..e6ed364da 100644 --- a/cli/ops/compiler.rs +++ b/cli/ops/compiler.rs @@ -6,7 +6,7 @@ use crate::futures::future::try_join_all; use crate::msg; use crate::op_error::OpError; use crate::state::State; -use deno_core::Loader; +use deno_core::ModuleLoader; use deno_core::*; use futures::future::FutureExt; |