2020-01-26 15:56:19 +01:00
|
|
|
/* vim9script.c */
|
|
|
|
int in_vim9script(void);
|
|
|
|
void ex_vim9script(exarg_T *eap);
|
2020-07-28 20:07:27 +02:00
|
|
|
int not_in_vim9(exarg_T *eap);
|
2020-01-26 15:56:19 +01:00
|
|
|
void ex_export(exarg_T *eap);
|
2020-10-14 19:39:19 +02:00
|
|
|
void free_imports_and_script_vars(int sid);
|
2020-12-27 13:39:50 +01:00
|
|
|
void mark_imports_for_reload(int sid);
|
2020-01-26 15:56:19 +01:00
|
|
|
void ex_import(exarg_T *eap);
|
2020-10-15 12:46:44 +02:00
|
|
|
int find_exported(int sid, char_u *name, ufunc_T **ufunc, type_T **type, cctx_T *cctx);
|
2020-07-04 13:15:31 +02:00
|
|
|
char_u *handle_import(char_u *arg_start, garray_T *gap, int import_sid, evalarg_T *evalarg, void *cctx);
|
2020-06-13 18:09:19 +02:00
|
|
|
char_u *vim9_declare_scriptvar(exarg_T *eap, char_u *arg);
|
2020-12-26 20:09:15 +01:00
|
|
|
void update_vim9_script_var(int create, dictitem_T *di, typval_T *tv, type_T *type);
|
2020-10-20 14:25:07 +02:00
|
|
|
void hide_script_var(scriptitem_T *si, int idx, int func_defined);
|
2020-10-14 19:39:19 +02:00
|
|
|
void free_all_script_vars(scriptitem_T *si);
|
2020-10-08 21:16:42 +02:00
|
|
|
svar_T *find_typval_in_script(typval_T *dest);
|
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 : */
|