| 965 | } |
| 966 | |
| 967 | type countingObserver struct { |
| 968 | started atomic.Int32 |
| 969 | finished atomic.Int32 |
| 970 | } |
| 971 | |
| 972 | func (o *countingObserver) OnCallStarted(callID int64, function, overload string, args []ref.Val) { |
| 973 | o.started.Add(1) |
nothing calls this directly
no outgoing calls
no test coverage detected