mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-10-01 06:11:35 +00:00
remove forward pointer to Path
This commit is contained in:
parent
f8ddef875a
commit
e564334320
12 changed files with 27 additions and 20 deletions
|
@ -5,12 +5,14 @@
|
|||
|
||||
use std::sync::Arc;
|
||||
|
||||
use hir_def::name::{self, AsName};
|
||||
use hir_def::{
|
||||
name::{self, AsName},
|
||||
path::Path,
|
||||
};
|
||||
use ra_syntax::ast::{self, DefaultTypeParamOwner, NameOwner, TypeBoundsOwner, TypeParamsOwner};
|
||||
|
||||
use crate::{
|
||||
db::{AstDatabase, DefDatabase, HirDatabase},
|
||||
path::Path,
|
||||
type_ref::{TypeBound, TypeRef},
|
||||
Adt, Const, Container, Enum, EnumVariant, Function, HasSource, ImplBlock, Name, Struct, Trait,
|
||||
TypeAlias, Union,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue