New creates a new instance of the hint summary override structure
()
| 13 | |
| 14 | // New creates a new instance of the hint summary override structure |
| 15 | func New() *HintSummary { |
| 16 | hs := new(HintSummary) |
| 17 | hs.m = make(map[string]string) |
| 18 | return hs |
| 19 | } |
| 20 | |
| 21 | // Get returns the hint summary override |
| 22 | func (hs *HintSummary) Get(exe string) string { |
no outgoing calls