| 69 | } |
| 70 | |
| 71 | void VisableDataSet::dump_info(Content& c) { |
| 72 | auto&& content_set = m_file2content[c.file_name()]; |
| 73 | content_set.insert(c.content_name()); |
| 74 | auto&& value_list = m_filecontent2value[c.file_name() + "/" + c.content_name()]; |
| 75 | value_list.push_back(c.to_json()); |
| 76 | } |
| 77 | |
| 78 | void VisableDataSet::write_to_file() { |
| 79 | for (auto& i : m_file2content) { |
no test coverage detected