From 2e2c2e62eb6fccddae6bcc2ae22b83f209d05d0c Mon Sep 17 00:00:00 2001 From: Aleksey Kladov Date: Wed, 29 Aug 2018 18:06:46 +0300 Subject: Remove dead code --- crates/libanalysis/src/lib.rs | 19 +------------------ 1 file changed, 1 insertion(+), 18 deletions(-) (limited to 'crates') diff --git a/crates/libanalysis/src/lib.rs b/crates/libanalysis/src/lib.rs index 3f54a7f0d..ef749787a 100644 --- a/crates/libanalysis/src/lib.rs +++ b/crates/libanalysis/src/lib.rs @@ -25,7 +25,7 @@ use std::{ time::Instant, }; -use relative_path::{RelativePath,RelativePathBuf}; +use relative_path::RelativePath; use once_cell::sync::OnceCell; use rayon::prelude::*; @@ -138,23 +138,6 @@ impl WorldState { } } -#[derive(Debug)] -pub struct QuickFix { - pub fs_ops: Vec, -} - -#[derive(Debug)] -pub enum FsOp { - CreateFile { - anchor: FileId, - path: RelativePathBuf, - }, - MoveFile { - file: FileId, - path: RelativePathBuf, - } -} - impl World { pub fn file_syntax(&self, file_id: FileId) -> Result { let data = self.file_data(file_id)?; -- cgit v1.2.3