* Returns the generated string.
()
| 1020 | * Returns the generated string. |
| 1021 | */ |
| 1022 | toString(): string { |
| 1023 | let str = this.intro |
| 1024 | |
| 1025 | let chunk = this.firstChunk |
| 1026 | while (chunk) { |
| 1027 | str += chunk.toString() |
| 1028 | chunk = chunk.next |
| 1029 | } |
| 1030 | |
| 1031 | return str + this.outro |
| 1032 | } |
| 1033 | |
| 1034 | /** |
| 1035 | * Returns true if the resulting source is empty (disregarding white space). |
nothing calls this directly
no outgoing calls
no test coverage detected