(v: number)
| 741 | this.markDirty() |
| 742 | } |
| 743 | setFlexBasisPercent(v: number): void { |
| 744 | this.style.flexBasis = percentValue(v) |
| 745 | this.markDirty() |
| 746 | } |
| 747 | setFlexBasisAuto(): void { |
| 748 | this.style.flexBasis = AUTO_VALUE |
| 749 | this.markDirty() |
nothing calls this directly
no test coverage detected