The exe name is not parsed out of the normal tokens, but is handled specially
| 7207 | |
| 7208 | // The exe name is not parsed out of the normal tokens, but is handled specially |
| 7209 | auto parse( std::string const&, TokenStream const &tokens ) const -> InternalParseResult override { |
| 7210 | return InternalParseResult::ok( ParseState( ParseResultType::NoMatch, tokens ) ); |
| 7211 | } |
| 7212 | |
| 7213 | auto name() const -> std::string { return *m_name; } |
| 7214 | auto set( std::string const& newName ) -> ParserResult { |