(key, value)
| 85 | * @param {unknown} value |
| 86 | */ |
| 87 | var add_source = (key, value) => { |
| 88 | var s = mutable_source(value, false, false); |
| 89 | sources.set(key, s); |
| 90 | return s; |
| 91 | }; |
| 92 | |
| 93 | // Replicate coarse-grained props through a proxy that has a version source for |
| 94 | // each property, which is incremented on updates to the property itself. Do not |
nothing calls this directly
no test coverage detected