Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/ide_db/src/call_info.rs')
| -rw-r--r-- | crates/ide_db/src/call_info.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ide_db/src/call_info.rs b/crates/ide_db/src/call_info.rs index 3d32fddd93..e1d85f0411 100644 --- a/crates/ide_db/src/call_info.rs +++ b/crates/ide_db/src/call_info.rs @@ -5,7 +5,7 @@ use hir::{HasAttrs, HirDisplay, Semantics, Type}; use stdx::format_to; use syntax::{ algo, - ast::{self, ArgListOwner, NameOwner}, + ast::{self, HasArgList, HasName}, match_ast, AstNode, Direction, SyntaxNode, SyntaxToken, TextRange, TextSize, }; |