(id uint64, c *compiled)
| 22 | } |
| 23 | |
| 24 | func (cc *compiledCache) Add(id uint64, c *compiled) { |
| 25 | cc.Lock() |
| 26 | defer cc.Unlock() |
| 27 | cc.cache[id] = c |
| 28 | } |
| 29 | |
| 30 | func (cc *compiledCache) Del(id uint64) { |
| 31 | cc.Lock() |
no outgoing calls
no test coverage detected