File tree Expand file tree Collapse file tree 2 files changed +17
-1
lines changed Expand file tree Collapse file tree 2 files changed +17
-1
lines changed Original file line number Diff line number Diff line change @@ -867,6 +867,7 @@ module.exports = grammar({
867
867
$ . removed_trait_bound ,
868
868
$ . generic_type ,
869
869
$ . function_type ,
870
+ $ . tuple_type ,
870
871
) ) ,
871
872
) ,
872
873
Original file line number Diff line number Diff line change @@ -1038,6 +1038,7 @@ Type aliases
1038
1038
1039
1039
type Inch = u64;
1040
1040
type Name<T> = Vec<T>;
1041
+ type LazyResolve = impl (FnOnce() -> Capture) + Send + Sync + UnwindSafe;
1041
1042
1042
1043
--------------------------------------------------------------------------------
1043
1044
@@ -1052,7 +1053,21 @@ type Name<T> = Vec<T>;
1052
1053
(generic_type
1053
1054
(type_identifier)
1054
1055
(type_arguments
1055
- (type_identifier)))))
1056
+ (type_identifier))))
1057
+ (type_item
1058
+ (type_identifier)
1059
+ (bounded_type
1060
+ (bounded_type
1061
+ (bounded_type
1062
+ (abstract_type
1063
+ (tuple_type
1064
+ (function_type
1065
+ (type_identifier)
1066
+ (parameters)
1067
+ (type_identifier))))
1068
+ (type_identifier))
1069
+ (type_identifier))
1070
+ (type_identifier))))
1056
1071
1057
1072
================================================================================
1058
1073
Empty statements
You can’t perform that action at this time.
0 commit comments