=========================================================================
| 303 | |
| 304 | //========================================================================= |
| 305 | cmValue cmConditionEvaluator::GetVariableOrString( |
| 306 | cmExpandedCommandArgument const& argument) const |
| 307 | { |
| 308 | cmValue def = this->GetDefinitionIfUnquoted(argument); |
| 309 | |
| 310 | if (!def) { |
| 311 | def = cmValue(argument.GetValue()); |
| 312 | } |
| 313 | |
| 314 | return def; |
| 315 | } |
| 316 | |
| 317 | //========================================================================= |
| 318 | bool cmConditionEvaluator::IsKeyword( |
no test coverage detected