(p, c)
| 31 | let doRender |
| 32 | class Outer extends Component { |
| 33 | constructor (p, c) { |
| 34 | super(p, c) |
| 35 | this.state = { i: 0 } |
| 36 | } |
| 37 | componentDidMount () { |
| 38 | doRender = () => this.setState({ i: this.state.i + 1 }) |
| 39 | } |
nothing calls this directly
no test coverage detected