(relativeTo)
| 15716 | return this._getPathVector() |
| 15717 | } |
| 15718 | getPathVectorRelativeTo(relativeTo) { |
| 15719 | return this._getPathVector(relativeTo) |
| 15720 | } |
| 15721 | _getPathVector(relativeTo) { |
| 15722 | if (this.isRoot(relativeTo)) return [] |
| 15723 | const path = this.parent._getPathVector(relativeTo) |
nothing calls this directly
no test coverage detected