| 149 | } |
| 150 | |
| 151 | void AppendCacheEntryProperty(std::string const& key, |
| 152 | std::string const& propName, |
| 153 | std::string const& value, |
| 154 | bool asString = false) |
| 155 | { |
| 156 | if (auto* entry = this->GetCacheEntry(key)) { |
| 157 | entry->AppendProperty(propName, value, asString); |
| 158 | } |
| 159 | } |
| 160 | |
| 161 | std::vector<std::string> GetCacheEntryKeys() const |
| 162 | { |
nothing calls this directly
no test coverage detected