The exe name is not parsed out of the normal tokens, but is handled specially
| 9001 | |
| 9002 | // The exe name is not parsed out of the normal tokens, but is handled specially |
| 9003 | auto parse( std::string const&, TokenStream const &tokens ) const -> InternalParseResult override { |
| 9004 | return InternalParseResult::ok( ParseState( ParseResultType::NoMatch, tokens ) ); |
| 9005 | } |
| 9006 | |
| 9007 | auto name() const -> std::string { return *m_name; } |
| 9008 | auto set( std::string const& newName ) -> ParserResult { |