| 44 | } |
| 45 | |
| 46 | void AutoCompletion::Reset() |
| 47 | { |
| 48 | this->prefix = ""; |
| 49 | this->query = ""; |
| 50 | this->initial_buf.clear(); |
| 51 | this->suggestions.clear(); |
| 52 | this->current_suggestion_index = 0; |
| 53 | } |
| 54 | |
| 55 | void AutoCompletion::InitSuggestions(std::string_view text) |
| 56 | { |
no test coverage detected