| #include "ast_handlers.hpp" |
| std::set<Completion> generateMissingKeyCompletionSet(std::set<std::string> keysNeeded, ListInstance currentKeys) |
| { |
| std::set<std::string> missingKeys; |
| |
| for (const auto& key : keysNeeded) { |
| if (currentKeys.find(key) == currentKeys.end()) { |
| missingKeys.insert(key); |
| } |
| } |
| |
| std::set<Completion> res; |
| |
| std::transform(missingKeys.begin(), missingKeys.end(), std::inserter(res, res.end()), [](auto it) { return Completion{it + "="}; }); |
| return res; |
| } |
| |
| std::string leafDataToCompletion(const leaf_data_& value) |
| { |
| // Only string-like values need to be quoted |
| if (value.type() == typeid(std::string)) { |
| return escapeListKeyString(leafDataToString(value)); |
| } |
| return leafDataToString(value); |
| } |
| |
| boost::optional<std::string> optModuleToOptString(const boost::optional<module_> module) |
| { |
| return module.flat_map([] (const auto& module) { return boost::optional<std::string>(module.m_name); }); |
| } |