* A specialized pseudo-event module to help keep track of components waiting to * be notified when their DOM representations are available for use. * * This implements `PooledClass`, so you should never need to instantiate this. * Instead, use `CallbackQueue.getPooled()`. * * @class ReactMount
()
| 802 | * @internal |
| 803 | */ |
| 804 | function CallbackQueue() { |
| 805 | this._callbacks = null; |
| 806 | this._contexts = null; |
| 807 | } |
| 808 | |
| 809 | _assign(CallbackQueue.prototype, { |
| 810 |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…