| 79 | } |
| 80 | |
| 81 | Json::Value Cache::DumpEntryProperties(std::string const& name) |
| 82 | { |
| 83 | Json::Value properties = Json::arrayValue; |
| 84 | std::vector<std::string> props = |
| 85 | this->State->GetCacheEntryPropertyList(name); |
| 86 | std::sort(props.begin(), props.end()); |
| 87 | for (std::string const& prop : props) { |
| 88 | properties.append(this->DumpEntryProperty(name, prop)); |
| 89 | } |
| 90 | return properties; |
| 91 | } |
| 92 | |
| 93 | Json::Value Cache::DumpEntryProperty(std::string const& name, |
| 94 | std::string const& prop) |
no test coverage detected