aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/parser.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/parser.h')
-rw-r--r--src/parser.h11
1 files changed, 7 insertions, 4 deletions
diff --git a/src/parser.h b/src/parser.h
index 4c03bd96..ba0edd6a 100644
--- a/src/parser.h
+++ b/src/parser.h
@@ -5,13 +5,16 @@
#ifndef FISH_PARSER_H
#define FISH_PARSER_H
-#include <wchar.h>
+#include <stddef.h> // for size_t
+#include <list> // for _List_const_iterator, list, etc
+#include "common.h"
#include "proc.h"
-#include "util.h"
#include "event.h"
-#include "function.h"
#include "parse_tree.h"
+#include "io.h"
+#include "parse_constants.h"
+
#include <vector>
/**
@@ -226,8 +229,8 @@ struct profile_item_t
wcstring cmd;
};
-struct tokenizer_t;
class parse_execution_context_t;
+class completion_t;
class parser_t
{