mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-27 12:29:21 +00:00
do fixup: remove unused imports in complete_dot.rs
This commit is contained in:
parent
858736c477
commit
957de26a1d
1 changed files with 1 additions and 4 deletions
|
@ -1,13 +1,10 @@
|
||||||
use hir::{AdtDef, Ty, TypeCtor};
|
use hir::{AdtDef, Ty, TypeCtor};
|
||||||
|
|
||||||
use crate::completion::completion_item::{Builder, CompletionKind};
|
use crate::completion::completion_item::CompletionKind;
|
||||||
use crate::{
|
use crate::{
|
||||||
completion::{completion_context::CompletionContext, completion_item::Completions},
|
completion::{completion_context::CompletionContext, completion_item::Completions},
|
||||||
CompletionItem,
|
CompletionItem,
|
||||||
};
|
};
|
||||||
use ra_syntax::ast::AstNode;
|
|
||||||
use ra_syntax::TextRange;
|
|
||||||
use ra_text_edit::TextEditBuilder;
|
|
||||||
use rustc_hash::FxHashSet;
|
use rustc_hash::FxHashSet;
|
||||||
|
|
||||||
/// Complete dot accesses, i.e. fields or methods (and .await syntax).
|
/// Complete dot accesses, i.e. fields or methods (and .await syntax).
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue