@@ -81,14 +81,25 @@ export const _headingToMethodBlock = (
81
81
) : MethodDocumentationBlock | null => {
82
82
if ( ! heading ) return null ;
83
83
84
+ const methodStringWithGenericRegexp = / ` (?: .+ \. ) ? ( .+ ?) ( < .+ > ) ( \( .* ?\) ) ` ( (?: _ [ ^ _ ] + ?_ ) * ) / g;
84
85
const methodStringRegexp = / ` (?: .+ \. ) ? ( .+ ?) ( \( .* ?\) ) ` ( (?: _ [ ^ _ ] + ?_ ) * ) / g;
86
+ const methodStringWithGenericMatch = methodStringWithGenericRegexp . exec ( heading . heading ) ;
85
87
const methodStringMatch = methodStringRegexp . exec ( heading . heading ) ! ;
86
88
methodStringRegexp . lastIndex = - 1 ;
89
+ methodStringWithGenericRegexp . lastIndex = - 1 ;
87
90
expect ( heading . heading ) . to . match (
88
91
methodStringRegexp ,
89
92
'each method should have a code blocked method name' ,
90
93
) ;
91
- const [ , methodString , methodSignature , headingTags ] = methodStringMatch ;
94
+ let methodString : string ;
95
+ let methodGenerics = '' ;
96
+ let methodSignature : string ;
97
+ let headingTags : string ;
98
+ if ( methodStringWithGenericMatch ) {
99
+ [ , methodString , methodGenerics , methodSignature , headingTags ] = methodStringWithGenericMatch ;
100
+ } else {
101
+ [ , methodString , methodSignature , headingTags ] = methodStringMatch ;
102
+ }
92
103
93
104
let parameters : MethodDocumentationBlock [ 'parameters' ] = [ ] ;
94
105
if ( methodSignature !== '()' ) {
@@ -128,6 +139,7 @@ export const _headingToMethodBlock = (
128
139
name : methodString ,
129
140
signature : methodSignature ,
130
141
description : parsedDescription ,
142
+ rawGenerics : methodGenerics || undefined ,
131
143
parameters,
132
144
returns : parsedReturnType ,
133
145
additionalTags : parseHeadingTags ( headingTags ) ,
0 commit comments