mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-28 04:44:57 +00:00
HasGenericArgs syntax trait
This commit is contained in:
parent
6c8c49b01b
commit
c08d419fba
26 changed files with 83 additions and 41 deletions
|
@ -6,7 +6,10 @@ use ide_db::{active_parameter::ActiveParameter, RootDatabase};
|
|||
use itertools::Either;
|
||||
use syntax::{
|
||||
algo::{ancestors_at_offset, find_node_at_offset, non_trivia_sibling},
|
||||
ast::{self, AttrKind, HasArgList, HasGenericParams, HasLoopBody, HasName, NameOrNameRef},
|
||||
ast::{
|
||||
self, AttrKind, HasArgList, HasGenericArgs, HasGenericParams, HasLoopBody, HasName,
|
||||
NameOrNameRef,
|
||||
},
|
||||
match_ast, AstNode, AstToken, Direction, NodeOrToken, SyntaxElement, SyntaxKind, SyntaxNode,
|
||||
SyntaxToken, TextRange, TextSize, T,
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue