(value)
| 97 | |
| 98 | /** @param {Value} value */ |
| 99 | export function push_reaction_value(value) { |
| 100 | if (active_reaction !== null && (!async_mode_flag || (active_reaction.f & DERIVED) !== 0)) { |
| 101 | (current_sources ??= new Set()).add(value); |
| 102 | } |
| 103 | } |
| 104 | |
| 105 | /** |
| 106 | * The dependencies of the reaction that is currently being executed. In many cases, |
no test coverage detected
searching dependent graphs…