(props, context, updater)
| 81 | assign = Object.assign, |
| 82 | emptyObject = {}; |
| 83 | function Component(props, context, updater) { |
| 84 | this.props = props; |
| 85 | this.context = context; |
| 86 | this.refs = emptyObject; |
| 87 | this.updater = updater || ReactNoopUpdateQueue; |
| 88 | } |
| 89 | Component.prototype.isReactComponent = {}; |
| 90 | Component.prototype.setState = function (partialState, callback) { |
| 91 | if ( |
no outgoing calls
no test coverage detected
searching dependent graphs…