(relativeTo)
| 15702 | } |
| 15703 | // todo: return array? getPathArray? |
| 15704 | _getCuePath(relativeTo) { |
| 15705 | if (this.isRoot(relativeTo)) return "" |
| 15706 | else if (this.parent.isRoot(relativeTo)) return this.cue |
| 15707 | return this.parent._getCuePath(relativeTo) + this.edgeSymbol + this.cue |
| 15708 | } |
| 15709 | getCuePathRelativeTo(relativeTo) { |
| 15710 | return this._getCuePath(relativeTo) |
| 15711 | } |
no test coverage detected