Rename TypeArgList -> GenericArgList

This commit is contained in:
Aleksey Kladov 2020-07-31 18:29:29 +02:00
parent 54fd09a9ca
commit 91781c7ce8
41 changed files with 70 additions and 70 deletions

View file

@ -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

View file

@ -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,