(tk TargetKey, v int)
| 79 | } |
| 80 | |
| 81 | func (k *keyToTargetID) Store(tk TargetKey, v int) { |
| 82 | k.lock.Lock() |
| 83 | defer k.lock.Unlock() |
| 84 | k.data[tk] = v |
| 85 | } |
| 86 | |
| 87 | func (k *keyToTargetID) Coverage(data map[TargetKey]int) { |
| 88 | k.lock.Lock() |
no test coverage detected