diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2022-11-25 18:38:08 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-25 18:38:08 -0500 |
commit | 6de3d7f184a4490d342a4c43af6a04b0b26f8cfd (patch) | |
tree | cdb69a46a85bf0908cfe45ebd3f06e3ada608454 /cli/tools/repl/editor.rs | |
parent | dcb4ffb93a380710c32cc212b937ea38db5ceacc (diff) |
refactor: move cdp.rs to tools/repl (#16821)
Diffstat (limited to 'cli/tools/repl/editor.rs')
-rw-r--r-- | cli/tools/repl/editor.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/tools/repl/editor.rs b/cli/tools/repl/editor.rs index 73196d3f3..2ff9ee0b4 100644 --- a/cli/tools/repl/editor.rs +++ b/cli/tools/repl/editor.rs @@ -1,6 +1,5 @@ // Copyright 2018-2022 the Deno authors. All rights reserved. MIT license. -use crate::cdp; use crate::colors; use deno_ast::swc::parser::error::SyntaxError; use deno_ast::swc::parser::token::Token; @@ -32,6 +31,7 @@ use std::sync::atomic::AtomicBool; use std::sync::atomic::Ordering::Relaxed; use std::sync::Arc; +use super::cdp; use super::channel::RustylineSyncMessageSender; // Provides helpers to the editor like validation for multi-line edits, completion candidates for |