(inst: any, payload: any, callback: null)
| 123 | } |
| 124 | }, |
| 125 | enqueueReplaceState(inst: any, payload: any, callback: null) { |
| 126 | const internals: InternalInstance = getInstance(inst); |
| 127 | internals.replace = true; |
| 128 | internals.queue = [payload]; |
| 129 | if (__DEV__) { |
| 130 | if (callback !== undefined && callback !== null) { |
| 131 | warnOnInvalidCallback(callback); |
| 132 | } |
| 133 | } |
| 134 | }, |
| 135 | // $FlowFixMe[missing-local-annot] |
| 136 | enqueueForceUpdate(inst: any, callback) { |
| 137 | const internals: InternalInstance = getInstance(inst); |
nothing calls this directly
no test coverage detected