| 296 | }; |
| 297 | |
| 298 | struct RawArg { |
| 299 | RawArg() = default; |
| 300 | explicit RawArg(std::string arg) : arg(std::move(arg)) { |
| 301 | } |
| 302 | |
| 303 | std::string arg; |
| 304 | |
| 305 | bool empty() const { |
| 306 | return arg.empty(); |
| 307 | } |
| 308 | }; |
| 309 | |
| 310 | // Credit: JustMagic |
| 311 | struct Command { |
no outgoing calls
no test coverage detected