mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-13 13:39:02 +00:00
Remove parser_error
It was unused.
This commit is contained in:
parent
5c44d897ea
commit
137c2559d9
1 changed files with 0 additions and 12 deletions
12
src/parser.h
12
src/parser.h
|
@ -139,18 +139,6 @@ struct breakpoint_block_t : public block_t {
|
|||
breakpoint_block_t();
|
||||
};
|
||||
|
||||
/// Errors that can be generated by the parser.
|
||||
enum parser_error {
|
||||
/// No error.
|
||||
NO_ERR = 0,
|
||||
/// An error in the syntax.
|
||||
SYNTAX_ERROR,
|
||||
/// Error occured while evaluating commands.
|
||||
EVAL_ERROR,
|
||||
/// Error while evaluating cmdsubst.
|
||||
CMDSUBST_ERROR,
|
||||
};
|
||||
|
||||
struct profile_item_t {
|
||||
/// Time spent executing the specified command, including parse time for nested blocks.
|
||||
int exec;
|
||||
|
|
Loading…
Reference in a new issue