| 41 | // reorder at your choosing. |
| 42 | func (s *Snapshot) Aggregate(similar Similarity) *Aggregated { |
| 43 | type count struct { |
| 44 | ids []int |
| 45 | first bool |
| 46 | } |
| 47 | b := map[*Signature]*count{} |
| 48 | // O(n²). Fix eventually. |
| 49 | for _, routine := range s.Goroutines { |
nothing calls this directly
no outgoing calls
no test coverage detected