traceValueProvider can be used to wrap an existing value provider to trace an calls to their Set and Get methods.
| 11 | // existing value provider to trace an calls to |
| 12 | // their Set and Get methods. |
| 13 | type traceValueProvider struct { |
| 14 | ValueProvider |
| 15 | } |
| 16 | |
| 17 | // TraceProvider returns a new ValueProvider that wraps |
| 18 | // vp but traces all Set and Get methods calls. |
nothing calls this directly
no outgoing calls
no test coverage detected