()
| 16275 | return prev === -1 ? parent._getSubparticlesArray()[length - 1] : parent._getSubparticlesArray()[prev] |
| 16276 | } |
| 16277 | _getUnionNames() { |
| 16278 | if (!this.length) return [] |
| 16279 | const obj = {} |
| 16280 | this.forEach(particle => { |
| 16281 | if (!particle.length) return undefined |
| 16282 | particle.forEach(particle => { |
| 16283 | obj[particle.cue] = 1 |
| 16284 | }) |
| 16285 | }) |
| 16286 | return Object.keys(obj) |
| 16287 | } |
| 16288 | getAncestorParticlesByInheritanceViaExtendsCue(key) { |
| 16289 | const ancestorParticles = this._getAncestorParticles( |
| 16290 | (particle, id) => particle._getParticlesByColumn(0, id), |
no test coverage detected