(props)
| 8400 | }; |
| 8401 | } |
| 8402 | setProps(props) { |
| 8403 | // this._updateViewState must be bound to `this` |
| 8404 | // but we don't have access to the current instance before calling super(). |
| 8405 | if ("onViewStateChange" in props && this._updateViewState) { |
| 8406 | // This is called at least once at _onRendererInitialized |
| 8407 | this.onViewStateChange = props.onViewStateChange; |
| 8408 | props.onViewStateChange = this._updateViewState; |
| 8409 | } |
| 8410 | super.setProps(props); |
| 8411 | } |
| 8412 | } |
| 8413 | const instance = new DeckGLInternal(props1); |
| 8414 | return instance; |
no outgoing calls
no test coverage detected