From 6de3d7f184a4490d342a4c43af6a04b0b26f8cfd Mon Sep 17 00:00:00 2001 From: David Sherret Date: Fri, 25 Nov 2022 18:38:08 -0500 Subject: refactor: move cdp.rs to tools/repl (#16821) --- cli/tools/repl/editor.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cli/tools/repl/editor.rs') 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 -- cgit v1.2.3