(oldName, newName)
| 17241 | return this |
| 17242 | } |
| 17243 | renameAll(oldName, newName) { |
| 17244 | this.findParticles(oldName).forEach(particle => particle.setCue(newName)) |
| 17245 | return this |
| 17246 | } |
| 17247 | _deleteAllChildParticlesWithCue(cue) { |
| 17248 | if (!this.has(cue)) return this |
| 17249 | const allParticles = this._getSubparticlesArray() |
nothing calls this directly
no test coverage detected