(edge: Edge, v: number)
| 791 | this.markDirty() |
| 792 | } |
| 793 | setPositionPercent(edge: Edge, v: number): void { |
| 794 | this.style.position[edge] = percentValue(v) |
| 795 | this._hasPosition = true |
| 796 | this.markDirty() |
| 797 | } |
| 798 | setPositionAuto(edge: Edge): void { |
| 799 | this.style.position[edge] = AUTO_VALUE |
| 800 | this._hasPosition = true |
nothing calls this directly
no test coverage detected