()
| 15404 | return relativeTo === this || !this.parent |
| 15405 | } |
| 15406 | get root() { |
| 15407 | return this._getRootParticle() |
| 15408 | } |
| 15409 | _getRootParticle(relativeTo) { |
| 15410 | if (this.isRoot(relativeTo)) return this |
| 15411 | return this.parent._getRootParticle(relativeTo) |
nothing calls this directly
no test coverage detected