| 98 | } |
| 99 | |
| 100 | std::optional<std::string> TempVariable::Value() const |
| 101 | { |
| 102 | if (!_valueIsValid) { |
| 103 | return {}; |
| 104 | } |
| 105 | return _value; |
| 106 | } |
| 107 | |
| 108 | void TempVariable::SetValue(const std::string &val) |
| 109 | { |
no outgoing calls
no test coverage detected