| 71 | } |
| 72 | |
| 73 | static std::vector<String> GlobalArgumentCompletion(const String& argument, const String& word) |
| 74 | { |
| 75 | if (argument == "include") |
| 76 | return GetBashCompletionSuggestions("directory", word); |
| 77 | else if (argument == "log-level") |
| 78 | return GetLogLevelCompletionSuggestions(word); |
| 79 | else |
| 80 | return std::vector<String>(); |
| 81 | } |
| 82 | |
| 83 | static void HandleLegacyDefines() |
| 84 | { |
nothing calls this directly
no test coverage detected