(comment)
| 63 | */ |
| 64 | function generate(depth, comment) { |
| 65 | function typeSection(comment) { |
| 66 | return ( |
| 67 | comment.type && |
| 68 | u('paragraph', [u('text', 'Type: ')].concat(formatType(comment.type))) |
| 69 | ); |
| 70 | } |
| 71 | |
| 72 | function paramList(params) { |
| 73 | if (params.length === 0) return []; |
no test coverage detected