(input: string)
| 91 | rewrites.push(rewrite); |
| 92 | }, |
| 93 | append(input: string): string { |
| 94 | if (!input) return ""; |
| 95 | if (rewrites.length === 0) { |
| 96 | const output = pending + input; |
| 97 | pending = ""; |
| 98 | return output; |
| 99 | } |
| 100 | return appendWithActiveRewrite(input); |
| 101 | }, |
| 102 | finish(): string { |
| 103 | const output = pending; |
| 104 | pending = ""; |
nothing calls this directly
no test coverage detected