(size: number, orthogonalSize: number)
| 127 | } |
| 128 | |
| 129 | layout(size: number, orthogonalSize: number): void { |
| 130 | const [width, height] = |
| 131 | this.orientation === Orientation.HORIZONTAL |
| 132 | ? [size, orthogonalSize] |
| 133 | : [orthogonalSize, size]; |
| 134 | super.layout(width, height); |
| 135 | } |
| 136 | |
| 137 | init(parameters: PanelViewInitParameters): void { |
| 138 | super.init(parameters); |
nothing calls this directly
no test coverage detected
searching dependent graphs…