(pathVector)
| 16318 | return ancestorParticles |
| 16319 | } |
| 16320 | pathVectorToCuePath(pathVector) { |
| 16321 | const path = pathVector.slice() // copy array |
| 16322 | const names = [] |
| 16323 | let particle = this |
| 16324 | while (path.length) { |
| 16325 | if (!particle) return names |
| 16326 | names.push(particle.particleAt(path[0]).cue) |
| 16327 | particle = particle.particleAt(path.shift()) |
| 16328 | } |
| 16329 | return names |
| 16330 | } |
| 16331 | toStringWithLineNumbers() { |
| 16332 | return this.toString() |
| 16333 | .split("\n") |
nothing calls this directly
no test coverage detected