#define CMD_OR_ERR_MSG _( L"Expected a command name, got token of type '%ls'. Did you mean 'COMMAND; or COMMAND'? See the help section for the 'or' builtin command by typing 'help or'.")
#define CMD_AND_ERR_MSG _( L"Expected a command name, got token of type '%ls'. Did you mean 'COMMAND; and COMMAND'? See the help section for the 'and' builtin command by typing 'help and'.")
/**
Errormessagewhenencounteringanillegalcommandname
*/
#define ILLEGAL_CMD_ERR_MSG _( L"Illegal command name '%ls'")
#define INVALID_RETURN_ERR_MSG _( L"'return' builtin command outside of function definition" )
/**
Errorwhenusingelsebuiltinoutsideofifblock
*/
#define INVALID_ELSE_ERR_MSG _( L"'%ls' builtin not inside of if block" )
/**
Errorwhenusing'elseif'pastanaked'else'
*/
#define INVALID_ELSEIF_PAST_ELSE_ERR_MSG _( L"'%ls' used past terminating 'else'" )
/**
Errorwhenusingendbuiltinoutsideofblock
*/
#define INVALID_END_ERR_MSG _( L"'end' command outside of block")
/**
ErrormessageforPosix-styleassignment:foo=bar
*/
#define COMMAND_ASSIGN_ERR_MSG _( L"Unknown command '%ls'. Did you mean 'set %ls %ls'? See the help section on the set command by typing 'help set'.")
/**
Errorforinvalidredirectiontoken
*/
#define REDIRECT_TOKEN_ERR_MSG _( L"Expected redirection specification, got token of type '%ls'")
/**
Errorwhenencounteringredirectionwithoutacommand
*/
#define INVALID_REDIRECTION_ERR_MSG _( L"Encountered redirection when expecting a command name. Fish does not allow a redirection operation before a command.")
/**
Errorforevaluatingnullpointer
*/
#define EVAL_NULL_ERR_MSG _( L"Tried to evaluate null pointer." )
/**
Errorforevaluatinginillegalscope
*/
#define INVALID_SCOPE_ERR_MSG _( L"Tried to evaluate commands using invalid block type '%ls'" )
/**
Errorforwrongtokentype
*/
#define UNEXPECTED_TOKEN_ERR_MSG _( L"Unexpected token of type '%ls'")
/**
Whileblockdescription
*/
#define WHILE_BLOCK N_( L"'while' block" )
/**
Forblockdescription
*/
#define FOR_BLOCK N_( L"'for' block" )
/**
Breakpointblock
*/
#define BREAKPOINT_BLOCK N_( L"Block created by breakpoint" )