mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-27 12:29:21 +00:00
.
This commit is contained in:
parent
42be522c80
commit
5e3891c255
4 changed files with 52 additions and 8 deletions
|
@ -36,6 +36,7 @@
|
|||
//! have a single `FileSet` which unions the two sources.
|
||||
mod vfs_path;
|
||||
mod path_interner;
|
||||
mod anchored_path;
|
||||
pub mod file_set;
|
||||
pub mod loader;
|
||||
|
||||
|
@ -43,7 +44,10 @@ use std::{fmt, mem};
|
|||
|
||||
use crate::path_interner::PathInterner;
|
||||
|
||||
pub use crate::vfs_path::VfsPath;
|
||||
pub use crate::{
|
||||
anchored_path::{AnchoredPath, AnchoredPathBuf},
|
||||
vfs_path::VfsPath,
|
||||
};
|
||||
pub use paths::{AbsPath, AbsPathBuf};
|
||||
|
||||
#[derive(Copy, Clone, Debug, Ord, PartialOrd, Eq, PartialEq, Hash)]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue