| 40 | explicit operator bool() const { return this->KeywordErrors.empty(); } |
| 41 | |
| 42 | void AddKeywordError(cm::string_view key, cm::string_view text) |
| 43 | |
| 44 | { |
| 45 | this->KeywordErrors[key].emplace(text); |
| 46 | } |
| 47 | |
| 48 | KeywordErrorMap const& GetKeywordErrors() const |
| 49 | { |
no test coverage detected