(typeof this._cellPositioner === 'undefined')
| 210 | |
| 211 | _initCellPositioner() { |
| 212 | if (typeof this._cellPositioner === 'undefined') { |
| 213 | const {columnWidth, gutterSize} = this.state; |
| 214 | |
| 215 | this._cellPositioner = createCellPositioner({ |
| 216 | cellMeasurerCache: this._cache, |
| 217 | columnCount: this._columnCount, |
| 218 | columnWidth, |
| 219 | spacer: gutterSize, |
| 220 | }); |
| 221 | } |
| 222 | } |
| 223 | |
| 224 | _onResize({width}) { |
nothing calls this directly
no test coverage detected