()
| 2368 | } |
| 2369 | |
| 2370 | componentWillMount() { |
| 2371 | const oldRender = this.render.bind(this); |
| 2372 | this.render = () => { |
| 2373 | this.superSecret = this.secret + 1; |
| 2374 | return <div>PATCHED + {oldRender()}</div>; |
| 2375 | }; |
| 2376 | } |
| 2377 | |
| 2378 | render() { |
| 2379 | return <div>{this.superSecret}</div>; |
nothing calls this directly
no outgoing calls
no test coverage detected