()
| 97 | |
| 98 | // Full path: has async expressions |
| 99 | function run() { |
| 100 | Promise.all(async.map((expression) => async_derived(expression))) |
| 101 | .then(finish) |
| 102 | .catch((error) => invoke_error_boundary(error, parent)) |
| 103 | .finally(decrement_pending); |
| 104 | } |
| 105 | |
| 106 | if (blocker_promise) { |
| 107 | blocker_promise.then(() => { |
no test coverage detected