* Returns the generated string.
()
| 1172 | * Returns the generated string. |
| 1173 | */ |
| 1174 | toString(): string { |
| 1175 | let str = this.intro |
| 1176 | |
| 1177 | let chunk = this.firstChunk |
| 1178 | while (chunk) { |
| 1179 | str += chunk.toString() |
| 1180 | chunk = chunk.next |
| 1181 | } |
| 1182 | |
| 1183 | return str + this.outro |
| 1184 | } |
| 1185 | |
| 1186 | /** |
| 1187 | * Returns true if the resulting source is empty (disregarding white space). |
nothing calls this directly
no outgoing calls
no test coverage detected