summaryrefslogtreecommitdiffstats
path: root/src/proto.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2021-12-20 15:04:29 +0000
committerBram Moolenaar <Bram@vim.org>2021-12-20 15:04:29 +0000
commitdc7c366f3aae65ee691010b08f37acfb26e0742b (patch)
tree90d12bd3030048100a9c5084474aef484f6fc58f /src/proto.h
parenta99fb23842f055c511bfe1b62de7bbd14d5a99c0 (diff)
patch 8.2.3860: Vim9: codecov struggles with the file sizev8.2.3860
Problem: Vim9: codecov struggles with the file size. Solution: Split vim9compile.c into four files.
Diffstat (limited to 'src/proto.h')
-rw-r--r--src/proto.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/proto.h b/src/proto.h
index 6c26aee38c..d31629e0e1 100644
--- a/src/proto.h
+++ b/src/proto.h
@@ -212,8 +212,13 @@ void mbyte_im_set_active(int active_arg);
# include "version.pro"
# include "vim9script.pro"
# ifdef FEAT_EVAL
+// include vim9.h here, the types defined there are used by function arguments.
+# include "vim9.h"
+# include "vim9cmds.pro"
# include "vim9compile.pro"
# include "vim9execute.pro"
+# include "vim9expr.pro"
+# include "vim9instr.pro"
# include "vim9type.pro"
# endif
# include "window.pro"