()
| 15321 | return this._getIndentLevel(relativeTo) |
| 15322 | } |
| 15323 | get indentation() { |
| 15324 | const indentLevel = this._getIndentLevel() - 1 |
| 15325 | if (indentLevel < 0) return "" |
| 15326 | return this.edgeSymbol.repeat(indentLevel) |
| 15327 | } |
| 15328 | _getTopDownArray(arr) { |
| 15329 | this.forEach(subparticle => { |
| 15330 | arr.push(subparticle) |
nothing calls this directly
no test coverage detected