()
| 4031 | const [forceValue, setForceValue] = createSignal(1) |
| 4032 | |
| 4033 | const inc = () => { |
| 4034 | setCount((prev) => prev + 1) |
| 4035 | } |
| 4036 | |
| 4037 | const forceUpdate = () => { |
| 4038 | setForceValue((prev) => prev + 1) |
nothing calls this directly
no outgoing calls
no test coverage detected