(relativeTo)
| 15407 | return this._getRootParticle() |
| 15408 | } |
| 15409 | _getRootParticle(relativeTo) { |
| 15410 | if (this.isRoot(relativeTo)) return this |
| 15411 | return this.parent._getRootParticle(relativeTo) |
| 15412 | } |
| 15413 | toString(indentCount = 0, language = this) { |
| 15414 | if (this.isRoot()) return this._subparticlesToString(indentCount, language) |
| 15415 | return this._toStringWithLine(indentCount, language) |