(description: string)
| 192 | } |
| 193 | |
| 194 | description(description: string): string[] { |
| 195 | |
| 196 | if (description) |
| 197 | return wrap(description, { |
| 198 | width: MAX_CODE_LEN |
| 199 | }) |
| 200 | .split('\n') |
| 201 | .map(l => html.comment(l)); |
| 202 | |
| 203 | return []; |
| 204 | } |
| 205 | |
| 206 | directive(directive: Directive): string { |
| 207 | return html.line( |
no test coverage detected