(
id: number,
inputA: DifferenceStreamReader<T>,
output: DifferenceStreamWriter<T>,
name: string,
indent: boolean = false,
)
| 11 | #indent: boolean |
| 12 | |
| 13 | constructor( |
| 14 | id: number, |
| 15 | inputA: DifferenceStreamReader<T>, |
| 16 | output: DifferenceStreamWriter<T>, |
| 17 | name: string, |
| 18 | indent: boolean = false, |
| 19 | ) { |
| 20 | super(id, inputA, output) |
| 21 | this.#name = name |
| 22 | this.#indent = indent |
| 23 | } |
| 24 | |
| 25 | run(): void { |
| 26 | for (const message of this.inputMessages()) { |
nothing calls this directly
no outgoing calls
no test coverage detected