()
| 22 | } |
| 23 | |
| 24 | get state(): PortionState { |
| 25 | return { |
| 26 | basis: this.basis, |
| 27 | vertical: this.vertical, |
| 28 | children: this.children.map((child) => child.state), |
| 29 | }; |
| 30 | } |
| 31 | |
| 32 | set state(state) { |
| 33 | this.basis = state.basis; |
nothing calls this directly
no test coverage detected