(nextProps, nextState)
| 68 | } |
| 69 | |
| 70 | shouldComponentUpdate(nextProps, nextState) { |
| 71 | return !shallowEqual(this.state, nextState) || |
| 72 | !shallowEqual(this.props, nextProps, 'wrapContext') |
| 73 | } |
| 74 | |
| 75 | componentDidUpdate() { |
| 76 | getMappers().forEach(mapper => { |
nothing calls this directly
no test coverage detected