| 50 | void set_value(const std::string &val, Statement *owner = nullptr); |
| 51 | |
| 52 | void |
| 53 | append_value(std::string &s, const Resources &res) const |
| 54 | { |
| 55 | if (!_cond_vals.empty()) { |
| 56 | for (auto _cond_val : _cond_vals) { |
| 57 | _cond_val->append_value(s, res); |
| 58 | } |
| 59 | } else { |
| 60 | s += _value; |
| 61 | } |
| 62 | } |
| 63 | |
| 64 | const std::string & |
| 65 | get_value() const |