()
| 17311 | return this.appendLineAndSubparticles(line, subparticles) |
| 17312 | } |
| 17313 | deleteBlanks() { |
| 17314 | this.getSubparticles() |
| 17315 | .filter(particle => particle.isBlankLine()) |
| 17316 | .forEach(particle => particle.destroy()) |
| 17317 | return this |
| 17318 | } |
| 17319 | // todo: add "globalReplace" method? Which runs a global regex or string replace on the Particle as a string? |
| 17320 | cueSort(cueOrder) { |
| 17321 | return this._cueSort(cueOrder) |
nothing calls this directly
no test coverage detected