mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-30 22:01:37 +00:00
drop old interning infra
This commit is contained in:
parent
6b993a9760
commit
88189c4282
2 changed files with 1 additions and 108 deletions
|
@ -1,11 +1,8 @@
|
|||
//! ra_db defines basic database traits. The concrete DB is defined by ra_ide_api.
|
||||
mod cancellation;
|
||||
mod input;
|
||||
mod loc2id;
|
||||
|
||||
use std::{
|
||||
panic, sync::Arc,
|
||||
};
|
||||
use std::{panic, sync::Arc};
|
||||
|
||||
use ra_syntax::{TextUnit, TextRange, SourceFile, TreeArc};
|
||||
use relative_path::RelativePathBuf;
|
||||
|
@ -16,7 +13,6 @@ pub use crate::{
|
|||
input::{
|
||||
FileId, CrateId, SourceRoot, SourceRootId, CrateGraph, Dependency, Edition,
|
||||
},
|
||||
loc2id::LocationInterner,
|
||||
};
|
||||
|
||||
pub trait CheckCanceled: panic::RefUnwindSafe {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue