The exe name is not parsed out of the normal tokens, but is handled specially
| 9234 | |
| 9235 | // The exe name is not parsed out of the normal tokens, but is handled specially |
| 9236 | auto parse( std::string const&, TokenStream const &tokens ) const -> InternalParseResult override { |
| 9237 | return InternalParseResult::ok( ParseState( ParseResultType::NoMatch, tokens ) ); |
| 9238 | } |
| 9239 | |
| 9240 | auto name() const -> std::string { return *m_name; } |
| 9241 | auto set( std::string const& newName ) -> ParserResult { |