(effect, instance)
| 12161 | } |
| 12162 | |
| 12163 | function commitUpdateEffects(effect, instance) { |
| 12164 | while (effect !== null) { |
| 12165 | var _callback3 = effect.callback; |
| 12166 | if (_callback3 !== null) { |
| 12167 | effect.callback = null; |
| 12168 | callCallback(_callback3, instance); |
| 12169 | } |
| 12170 | effect = effect.nextEffect; |
| 12171 | } |
| 12172 | } |
| 12173 | |
| 12174 | function createCapturedValue(value, source) { |
| 12175 | // If the value is an error, call this function immediately after it is thrown |
no test coverage detected