(oldCue, newCue)
| 17221 | return this |
| 17222 | } |
| 17223 | _rename(oldCue, newCue) { |
| 17224 | const index = this.indexOf(oldCue) |
| 17225 | if (index === -1) return this |
| 17226 | const particle = this._getSubparticlesArray()[index] |
| 17227 | particle.setCue(newCue) |
| 17228 | this._clearCueIndex() |
| 17229 | return this |
| 17230 | } |
| 17231 | // Does not recurse. |
| 17232 | remap(map) { |
| 17233 | this.forEach(particle => { |
no test coverage detected