2020-01-26 15:56:19 +01:00
|
|
|
/* vim9script.c */
|
|
|
|
int in_vim9script(void);
|
|
|
|
void ex_vim9script(exarg_T *eap);
|
|
|
|
void ex_export(exarg_T *eap);
|
|
|
|
void free_imports(int sid);
|
|
|
|
void ex_import(exarg_T *eap);
|
2020-02-23 21:25:54 +01:00
|
|
|
int find_exported(int sid, char_u **argp, int *name_len, ufunc_T **ufunc, type_T **type);
|
2020-03-09 19:25:27 +01:00
|
|
|
char_u *handle_import(char_u *arg_start, garray_T *gap, int import_sid, void *cctx);
|
2020-06-13 18:09:19 +02:00
|
|
|
char_u *vim9_declare_scriptvar(exarg_T *eap, char_u *arg);
|
2020-06-19 18:34:15 +02:00
|
|
|
int check_script_var_type(typval_T *dest, typval_T *value, char_u *name);
|
2020-01-26 15:56:19 +01:00
|
|
|
/* vim: set ft=c : */
|