(entry base.Candidate)
| 172 | type CompletionMap map[string]base.Candidate |
| 173 | |
| 174 | func (m CompletionMap) Insert(entry base.Candidate) { |
| 175 | m[entry.String()] = entry |
| 176 | } |
| 177 | |
| 178 | func (m CompletionMap) toSlice() []base.Candidate { |
| 179 | var result []base.Candidate |
no test coverage detected