0
0
mirror of https://github.com/vim/vim.git synced 2025-09-24 03:44:06 -04:00

patch 8.2.3860: Vim9: codecov struggles with the file size

Problem:    Vim9: codecov struggles with the file size.
Solution:   Split vim9compile.c into four files.
This commit is contained in:
Bram Moolenaar
2021-12-20 15:04:29 +00:00
parent a99fb23842
commit dc7c366f3a
18 changed files with 7888 additions and 7610 deletions

View File

@@ -16,11 +16,11 @@
#if defined(FEAT_EVAL) || defined(PROTO)
#ifdef VMS
# include <float.h>
// When not generating protos this is included in proto.h
#ifdef PROTO
# include "vim9.h"
#endif
#include "vim9.h"
// Structure put on ec_trystack when ISN_TRY is encountered.
typedef struct {
@@ -5064,7 +5064,7 @@ call_def_function(
if (ectx.ec_funcrefs.ga_len > 0)
{
handle_closure_in_use(&ectx, FALSE);
ga_clear(&ectx.ec_funcrefs); // TODO: should not be needed?
ga_clear(&ectx.ec_funcrefs);
}
estack_pop();