()
| 15763 | return result |
| 15764 | } |
| 15765 | getMaxLineWidth() { |
| 15766 | let maxWidth = 0 |
| 15767 | for (let particle of this.getTopDownArrayIterator()) { |
| 15768 | const lineWidth = particle.getLine().length |
| 15769 | if (lineWidth > maxWidth) maxWidth = lineWidth |
| 15770 | } |
| 15771 | return maxWidth |
| 15772 | } |
| 15773 | toParticle() { |
| 15774 | return new Particle(this.toString()) |
| 15775 | } |
no test coverage detected