From 1142112c70b705f59b7d559d9d72cdc831865158 Mon Sep 17 00:00:00 2001 From: Aleksey Kladov Date: Thu, 30 Jul 2020 14:51:08 +0200 Subject: Rename FnDef -> Fn --- .../test_data/parser/inline/ok/0138_associated_type_bounds.rast | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'crates/ra_syntax/test_data/parser/inline/ok/0138_associated_type_bounds.rast') diff --git a/crates/ra_syntax/test_data/parser/inline/ok/0138_associated_type_bounds.rast b/crates/ra_syntax/test_data/parser/inline/ok/0138_associated_type_bounds.rast index c457851c9..1ad03e005 100644 --- a/crates/ra_syntax/test_data/parser/inline/ok/0138_associated_type_bounds.rast +++ b/crates/ra_syntax/test_data/parser/inline/ok/0138_associated_type_bounds.rast @@ -1,5 +1,5 @@ SOURCE_FILE@0..59 - FN_DEF@0..58 + FN@0..58 FN_KW@0..2 "fn" WHITESPACE@2..3 " " NAME@3..12 -- cgit v1.2.3 From 28ef4c375a9f56d69daf885504aea3df7012bb81 Mon Sep 17 00:00:00 2001 From: Aleksey Kladov Date: Thu, 30 Jul 2020 15:36:21 +0200 Subject: Rename TypeParamList -> GenericParamList --- .../test_data/parser/inline/ok/0138_associated_type_bounds.rast | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'crates/ra_syntax/test_data/parser/inline/ok/0138_associated_type_bounds.rast') diff --git a/crates/ra_syntax/test_data/parser/inline/ok/0138_associated_type_bounds.rast b/crates/ra_syntax/test_data/parser/inline/ok/0138_associated_type_bounds.rast index 1ad03e005..157513565 100644 --- a/crates/ra_syntax/test_data/parser/inline/ok/0138_associated_type_bounds.rast +++ b/crates/ra_syntax/test_data/parser/inline/ok/0138_associated_type_bounds.rast @@ -4,7 +4,7 @@ SOURCE_FILE@0..59 WHITESPACE@2..3 " " NAME@3..12 IDENT@3..12 "print_all" - TYPE_PARAM_LIST@12..40 + GENERIC_PARAM_LIST@12..40 L_ANGLE@12..13 "<" TYPE_PARAM@13..39 NAME@13..14 -- cgit v1.2.3 From 91781c7ce8201b28afd56b4e35eba47e076a8498 Mon Sep 17 00:00:00 2001 From: Aleksey Kladov Date: Fri, 31 Jul 2020 18:29:29 +0200 Subject: Rename TypeArgList -> GenericArgList --- .../test_data/parser/inline/ok/0138_associated_type_bounds.rast | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'crates/ra_syntax/test_data/parser/inline/ok/0138_associated_type_bounds.rast') diff --git a/crates/ra_syntax/test_data/parser/inline/ok/0138_associated_type_bounds.rast b/crates/ra_syntax/test_data/parser/inline/ok/0138_associated_type_bounds.rast index 157513565..e0a82df75 100644 --- a/crates/ra_syntax/test_data/parser/inline/ok/0138_associated_type_bounds.rast +++ b/crates/ra_syntax/test_data/parser/inline/ok/0138_associated_type_bounds.rast @@ -18,7 +18,7 @@ SOURCE_FILE@0..59 PATH_SEGMENT@16..39 NAME_REF@16..24 IDENT@16..24 "Iterator" - TYPE_ARG_LIST@24..39 + GENERIC_ARG_LIST@24..39 L_ANGLE@24..25 "<" ASSOC_TYPE_ARG@25..38 NAME_REF@25..29 -- cgit v1.2.3 From 98181087984157e27faba0b969e384f3c62c39d5 Mon Sep 17 00:00:00 2001 From: Aleksey Kladov Date: Fri, 31 Jul 2020 20:09:09 +0200 Subject: Rename BindPat -> IdentPat --- .../test_data/parser/inline/ok/0138_associated_type_bounds.rast | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'crates/ra_syntax/test_data/parser/inline/ok/0138_associated_type_bounds.rast') diff --git a/crates/ra_syntax/test_data/parser/inline/ok/0138_associated_type_bounds.rast b/crates/ra_syntax/test_data/parser/inline/ok/0138_associated_type_bounds.rast index e0a82df75..3870ec135 100644 --- a/crates/ra_syntax/test_data/parser/inline/ok/0138_associated_type_bounds.rast +++ b/crates/ra_syntax/test_data/parser/inline/ok/0138_associated_type_bounds.rast @@ -37,7 +37,7 @@ SOURCE_FILE@0..59 PARAM_LIST@40..55 L_PAREN@40..41 "(" PARAM@41..54 - BIND_PAT@41..51 + IDENT_PAT@41..51 NAME@41..51 IDENT@41..51 "printables" COLON@51..52 ":" -- cgit v1.2.3