* Mark an entire effect tree clean following an error * @param {Effect} effect
(effect)
| 1338 | * @param {Effect} effect |
| 1339 | */ |
| 1340 | function reset_all(effect) { |
| 1341 | set_signal_status(effect, CLEAN); |
| 1342 | |
| 1343 | var e = effect.first; |
| 1344 | while (e !== null) { |
| 1345 | reset_all(e); |
| 1346 | e = e.next; |
| 1347 | } |
| 1348 | } |
| 1349 | |
| 1350 | /** |
| 1351 | * Creates a 'fork', in which state changes are evaluated but not applied to the DOM. |
no test coverage detected