|
31 | 31 | {{! Synopsis }}
|
32 | 32 | {{#unless (eq symbol.kind "namespace")}}
|
33 | 33 | <div>
|
34 |
| -{{#> markup/dynamic-level-h level=2 }}Synopsis{{/markup/dynamic-level-h}} |
| 34 | +{{#> markup/dynamic-level-h level=2 }}{{#if (ne symbol.kind "overloads")}}Synopsis{{else}}Synopses{{/if}}{{/markup/dynamic-level-h}} |
35 | 35 | <div>
|
36 | 36 | {{>location/source dcl=(primary_location symbol)}}
|
37 | 37 | </div>
|
|
116 | 116 |
|
117 | 117 | {{/if}}
|
118 | 118 | {{! Exceptions }}
|
119 |
| -{{#if (ne symbol.kind "overloads")}} |
120 | 119 | {{#if symbol.doc.exceptions}}
|
121 | 120 | <div>
|
122 | 121 | {{#> markup/dynamic-level-h level=2 }}Exceptions{{/markup/dynamic-level-h}}
|
|
138 | 137 | </table>
|
139 | 138 | </div>
|
140 | 139 | {{/if}}
|
141 |
| -{{else}} |
142 |
| -{{#with (flattenUnique symbol.members "doc.exceptions" "exception") as |allExceptions|}} |
143 |
| -{{#if (ne (len allExceptions) 0)}} |
144 |
| -<div> |
145 |
| -{{#> markup/dynamic-level-h level=2 }}Exceptions{{/markup/dynamic-level-h}} |
146 |
| -<table> |
147 |
| -<thead> |
148 |
| -<tr> |
149 |
| -<th>Name</th> |
150 |
| -<th>Thrown on</th> |
151 |
| -</tr> |
152 |
| -</thead> |
153 |
| -<tbody> |
154 |
| -{{#each allExceptions as |exception|}} |
155 |
| -<tr> |
156 |
| -<td><code>{{exception}}</code></td> |
157 |
| -<td>{{{description}}}</td> |
158 |
| -</tr> |
159 |
| -{{/each}} |
160 |
| -</tbody> |
161 |
| -</table> |
162 |
| -</div> |
163 |
| -{{/if}} |
164 |
| -{{/with}} |
165 |
| -{{/if}} |
166 | 140 | {{! Return value }}
|
167 | 141 | {{#if symbol.doc.returns}}
|
168 | 142 | <div>
|
|
179 | 153 | </div>
|
180 | 154 | {{/if}}
|
181 | 155 | {{! Template Parameters }}
|
182 |
| -{{#if (ne symbol.kind "overloads")}} |
183 | 156 | {{#if symbol.doc.tparams}}
|
184 | 157 | <div>
|
185 | 158 | {{#> markup/dynamic-level-h level=2 }}Template Parameters{{/markup/dynamic-level-h}}
|
|
201 | 174 | </table>
|
202 | 175 | </div>
|
203 | 176 | {{/if}}
|
204 |
| -{{else}} |
205 |
| -{{#with (flattenUnique symbol.members "doc.tparams" "name") as |allTParams|}} |
206 |
| -{{#if (ne (len allTParams) 0)}} |
207 |
| -<div> |
208 |
| -{{#> markup/dynamic-level-h level=2 }}Template Parameters{{/markup/dynamic-level-h}} |
209 |
| -<table> |
210 |
| -<thead> |
211 |
| -<tr> |
212 |
| -<th>Name</th> |
213 |
| -<th>Description</th> |
214 |
| -</tr> |
215 |
| -</thead> |
216 |
| -<tbody> |
217 |
| -{{#each allTParams as |param|}} |
218 |
| -<tr> |
219 |
| -<td><strong>{{param.name}}</strong></td> |
220 |
| -<td>{{{param.description}}}</td> |
221 |
| -</tr> |
222 |
| -{{/each}} |
223 |
| -</tbody> |
224 |
| -</table> |
225 |
| -</div> |
226 |
| -{{/if}} |
227 |
| -{{/with}} |
228 |
| -{{/if}} |
229 | 177 | {{! Parameters }}
|
230 |
| -{{#if (ne symbol.kind "overloads")}} |
231 | 178 | {{#if symbol.doc.params}}
|
232 | 179 | <div>
|
233 | 180 | {{#> markup/dynamic-level-h level=2 }}Parameters{{/markup/dynamic-level-h}}
|
|
249 | 196 | </table>
|
250 | 197 | </div>
|
251 | 198 | {{/if}}
|
252 |
| -{{else}} |
253 |
| -{{#with (flattenUnique symbol.members "doc.params" "name") as |allParams|}} |
254 |
| -{{#if (ne (len allParams) 0)}} |
255 |
| -<div> |
256 |
| -{{#> markup/dynamic-level-h level=2 }}Parameters{{/markup/dynamic-level-h}} |
257 |
| -<table> |
258 |
| -<thead> |
259 |
| -<tr> |
260 |
| -<th>Name</th> |
261 |
| -<th>Description</th> |
262 |
| -</tr> |
263 |
| -</thead> |
264 |
| -<tbody> |
265 |
| -{{#each allParams as |param|}} |
266 |
| -<tr> |
267 |
| -<td><strong>{{param.name}}</strong></td> |
268 |
| -<td>{{{param.description}}}</td> |
269 |
| -</tr> |
270 |
| -{{/each}} |
271 |
| -</tbody> |
272 |
| -</table> |
273 |
| -</div> |
274 |
| -{{/if}} |
275 |
| -{{/with}} |
276 |
| -{{/if}} |
277 | 199 | {{! Preconditions }}
|
278 | 200 | {{#if symbol.doc.preconditions}}
|
279 | 201 | <div>
|
|
0 commit comments