We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 224387a + 2c083c9 commit 036ea63Copy full SHA for 036ea63
crates/ide/src/references/rename.rs
@@ -1,17 +1,16 @@
1
//! FIXME: write short doc here
2
+use std::{
3
+ convert::TryInto,
4
+ error::Error,
5
+ fmt::{self, Display},
6
+};
7
8
use hir::{Module, ModuleDef, ModuleSource, Semantics};
9
use ide_db::base_db::{FileRange, SourceDatabaseExt};
10
use ide_db::{
11
defs::{Definition, NameClass, NameRefClass},
12
RootDatabase,
13
};
-
-use std::{
- convert::TryInto,
- error::Error,
- fmt::{self, Display},
14
-};
15
use syntax::{
16
algo::find_node_at_offset,
17
ast::{self, NameOwner},
0 commit comments