mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-29 05:15:04 +00:00
Rename TypeArgList -> GenericArgList
This commit is contained in:
parent
54fd09a9ca
commit
91781c7ce8
41 changed files with 70 additions and 70 deletions
|
@ -22,7 +22,7 @@ pub(super) fn opt_type_arg_list(p: &mut Parser, colon_colon_required: bool) {
|
|||
}
|
||||
}
|
||||
p.expect(T![>]);
|
||||
m.complete(p, TYPE_ARG_LIST);
|
||||
m.complete(p, GENERIC_ARG_LIST);
|
||||
}
|
||||
|
||||
// test type_arg
|
||||
|
|
|
@ -235,7 +235,7 @@ pub enum SyntaxKind {
|
|||
LIFETIME_PARAM,
|
||||
TYPE_PARAM,
|
||||
CONST_PARAM,
|
||||
TYPE_ARG_LIST,
|
||||
GENERIC_ARG_LIST,
|
||||
LIFETIME_ARG,
|
||||
TYPE_ARG,
|
||||
ASSOC_TYPE_ARG,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue