()
| 15947 | return this._getStack(relativeTo).length |
| 15948 | } |
| 15949 | getParentFirstArray() { |
| 15950 | const levels = this._getLevels() |
| 15951 | const arr = [] |
| 15952 | Object.values(levels).forEach(level => { |
| 15953 | level.forEach(item => arr.push(item)) |
| 15954 | }) |
| 15955 | return arr |
| 15956 | } |
| 15957 | _getLevels() { |
| 15958 | const levels = {} |
| 15959 | this.topDownArray.forEach(particle => { |
nothing calls this directly
no test coverage detected