()
| 1058 | } |
| 1059 | |
| 1060 | length(): number { |
| 1061 | let chunk: Chunk | null = this.firstChunk |
| 1062 | let length = 0 |
| 1063 | while (chunk) { |
| 1064 | length += chunk.intro.length + chunk.content.length + chunk.outro.length |
| 1065 | chunk = chunk.next |
| 1066 | } |
| 1067 | return length |
| 1068 | } |
| 1069 | |
| 1070 | /** |
| 1071 | * Removes empty lines from the start and end. |
nothing calls this directly
no outgoing calls
no test coverage detected