(props, context)
| 81 | let mixins = specMixins.concat(spec) |
| 82 | spec.mixins = null |
| 83 | function Klass(props, context) { |
| 84 | Component.call(this, props, context) |
| 85 | this.constructor = Klass |
| 86 | spec.autobind !== false && bindContext(this, Klass.prototype) |
| 87 | this.state = this.getInitialState() || this.state |
| 88 | } |
| 89 | Klass.displayName = spec.displayName |
| 90 | let proto = Klass.prototype = new Facade() |
| 91 | proto.$getInitialStates = [] |
nothing calls this directly
no test coverage detected