()
| 699 | return true; |
| 700 | } |
| 701 | toString() { |
| 702 | let str = this.intro; |
| 703 | let chunk = this.firstChunk; |
| 704 | while (chunk) { |
| 705 | str += chunk.toString(); |
| 706 | chunk = chunk.next; |
| 707 | } |
| 708 | return str + this.outro; |
| 709 | } |
| 710 | isEmpty() { |
| 711 | let chunk = this.firstChunk; |
| 712 | do { |
no test coverage detected