| 2888 | } |
| 2889 | |
| 2890 | const Property * VariableExpression::getProperty() const |
| 2891 | { |
| 2892 | const Property * prop = var.getProperty(); |
| 2893 | |
| 2894 | if (prop) |
| 2895 | return prop; |
| 2896 | else |
| 2897 | throw Expression::Exception(var.resolveErrorString().c_str()); |
| 2898 | } |
| 2899 | |
| 2900 | void VariableExpression::addComponent(Component *c) { |
| 2901 | do { |
nothing calls this directly
no test coverage detected