(newValue: D)
| 104 | |
| 105 | if (customSet !== undefined) { |
| 106 | const rawSet = (newValue: D) => linkedSignalSetFn(node, newValue); |
| 107 | upgradedGetter.set = (newValue: D) => customSet(newValue, rawSet); |
| 108 | upgradedGetter.update = (updateFn: (value: D) => D) => |
| 109 | customSet(updateFn(untracked(getter)), rawSet); |
no test coverage detected