(content, subparticles)
| 17303 | return this.insertLine(line, 0) |
| 17304 | } |
| 17305 | pushContentAndSubparticles(content, subparticles) { |
| 17306 | let index = this.length |
| 17307 | while (this.has(index.toString())) { |
| 17308 | index++ |
| 17309 | } |
| 17310 | const line = index.toString() + (content === undefined ? "" : this.atomBreakSymbol + content) |
| 17311 | return this.appendLineAndSubparticles(line, subparticles) |
| 17312 | } |
| 17313 | deleteBlanks() { |
| 17314 | this.getSubparticles() |
| 17315 | .filter(particle => particle.isBlankLine()) |
no test coverage detected