(value: string)
| 466 | } |
| 467 | |
| 468 | text(value: string) { |
| 469 | this.#tail = [...this.#tail, textLine(value)] |
| 470 | return this |
| 471 | } |
| 472 | |
| 473 | reason(value: string) { |
| 474 | this.#tail = [...this.#tail, reasonLine(value)] |
nothing calls this directly
no test coverage detected