| 334 | } |
| 335 | |
| 336 | type stackCounter struct { |
| 337 | stack stackTrace |
| 338 | value [2]int64 // count, total |
| 339 | } |
| 340 | |
| 341 | func (sc *stackCounter) observe(value int64) { |
| 342 | sc.value[0] += 1 |
nothing calls this directly
no outgoing calls
no test coverage detected