* @param {Source[]} async
(async)
| 72 | * @param {Source[]} async |
| 73 | */ |
| 74 | function finish(async) { |
| 75 | if ((parent.f & DESTROYED) !== 0) { |
| 76 | return; |
| 77 | } |
| 78 | |
| 79 | restore(); |
| 80 | |
| 81 | try { |
| 82 | fn([...deriveds, ...async]); |
| 83 | } catch (error) { |
| 84 | invoke_error_boundary(error, parent); |
| 85 | } |
| 86 | |
| 87 | unset_context(); |
| 88 | } |
| 89 | |
| 90 | var decrement_pending = increment_pending(); |
| 91 |
no test coverage detected