| 31 | std::string const& GetError() const { return this->Error; } |
| 32 | |
| 33 | void SetReturnInvoked() |
| 34 | { |
| 35 | this->Variables.clear(); |
| 36 | this->ReturnInvoked = true; |
| 37 | } |
| 38 | void SetReturnInvoked(std::vector<std::string> variables) |
| 39 | { |
| 40 | this->Variables = std::move(variables); |
no test coverage detected