| 199 | } |
| 200 | |
| 201 | bool OptionsParser::checkForPluginOption() |
| 202 | { |
| 203 | bool requiresParameter; |
| 204 | PluginSpec *spec = m_pmPrivate->pluginForOption(m_currentArg, &requiresParameter); |
| 205 | if (!spec) |
| 206 | return false; |
| 207 | spec->addArgument(m_currentArg); |
| 208 | if (requiresParameter && nextToken(RequiredToken)) |
| 209 | spec->addArgument(m_currentArg); |
| 210 | return true; |
| 211 | } |
| 212 | |
| 213 | bool OptionsParser::checkForUnknownOption() |
| 214 | { |
nothing calls this directly
no test coverage detected