dashSetter captures whatever token JSONSet receives, including "-".
| 196 | |
| 197 | // dashSetter captures whatever token JSONSet receives, including "-". |
| 198 | type dashSetter struct { |
| 199 | key string |
| 200 | value any |
| 201 | } |
| 202 | |
| 203 | func (d *dashSetter) JSONSet(key string, value any) error { |
| 204 | d.key = key |
nothing calls this directly
no outgoing calls
no test coverage detected