(inputValues: InputValue[])
| 285 | } |
| 286 | |
| 287 | inputValues(inputValues: InputValue[]): string { |
| 288 | return inputValues |
| 289 | .map(inputValue => html.line(html.tab(this.inputValue(inputValue)))) |
| 290 | .join(''); |
| 291 | } |
| 292 | |
| 293 | inputValue(arg: InputValue): string { |
| 294 |
no test coverage detected