(updateQueue, context)
| 10971 | callback.call(context); |
| 10972 | } |
| 10973 | function commitCallbacks(updateQueue, context) { |
| 10974 | var callbacks = updateQueue.callbacks; |
| 10975 | if (null !== callbacks) |
| 10976 | for ( |
| 10977 | updateQueue.callbacks = null, updateQueue = 0; |
| 10978 | updateQueue < callbacks.length; |
| 10979 | updateQueue++ |
| 10980 | ) |
| 10981 | callCallback(callbacks[updateQueue], context); |
| 10982 | } |
| 10983 | function commitHookEffectListMount(flags, finishedWork) { |
| 10984 | try { |
| 10985 | var updateQueue = finishedWork.updateQueue, |
no test coverage detected
searching dependent graphs…