patch 8.2.0312: Vim9: insufficient script tests

Problem:    Vim9: insufficient script tests.
Solution:   Add more tests.  Make "import * as Name" work.
This commit is contained in:
Bram Moolenaar
2020-02-23 21:25:54 +01:00
parent 750802b55c
commit f2d5c240a5
5 changed files with 159 additions and 72 deletions

View File

@ -4,5 +4,6 @@ void ex_vim9script(exarg_T *eap);
void ex_export(exarg_T *eap);
void free_imports(int sid);
void ex_import(exarg_T *eap);
char_u *handle_import(char_u *arg_start, garray_T *gap, int sid);
int find_exported(int sid, char_u **argp, int *name_len, ufunc_T **ufunc, type_T **type);
char_u *handle_import(char_u *arg_start, garray_T *gap, int import_sid);
/* vim: set ft=c : */