()
| 555 | this.free() |
| 556 | } |
| 557 | reset(): void { |
| 558 | this.style = defaultStyle() |
| 559 | this.children = [] |
| 560 | this.parent = null |
| 561 | this.measureFunc = null |
| 562 | this.isDirty_ = true |
| 563 | this._hasAutoMargin = false |
| 564 | this._hasPosition = false |
| 565 | this._hasPadding = false |
| 566 | this._hasBorder = false |
| 567 | this._hasMargin = false |
| 568 | this._hasL = false |
| 569 | this._hasM = false |
| 570 | this._cN = 0 |
| 571 | this._cWr = 0 |
| 572 | this._fbBasis = NaN |
| 573 | } |
| 574 | |
| 575 | // -- Dirty tracking |
| 576 |
nothing calls this directly
no test coverage detected