2020-01-26 15:56:19 +01:00
|
|
|
/* vim9script.c */
|
|
|
|
int in_vim9script(void);
|
2021-08-15 13:49:42 +02:00
|
|
|
int in_old_script(int max_version);
|
2021-03-31 21:07:24 +02:00
|
|
|
int current_script_is_vim9(void);
|
2020-01-26 15:56:19 +01:00
|
|
|
void ex_vim9script(exarg_T *eap);
|
2020-07-28 20:07:27 +02:00
|
|
|
int not_in_vim9(exarg_T *eap);
|
2021-03-18 21:37:55 +01:00
|
|
|
int vim9_bad_comment(char_u *p);
|
2020-12-28 20:53:21 +01:00
|
|
|
int vim9_comment_start(char_u *p);
|
2021-04-24 19:08:24 +02:00
|
|
|
void ex_incdec(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);
|
2021-03-13 20:57:19 +01:00
|
|
|
int find_exported(int sid, char_u *name, ufunc_T **ufunc, type_T **type, cctx_T *cctx, int verbose);
|
2020-06-13 18:09:19 +02:00
|
|
|
char_u *vim9_declare_scriptvar(exarg_T *eap, char_u *arg);
|
2021-04-13 20:53:13 +02:00
|
|
|
void update_vim9_script_var(int create, dictitem_T *di, int flags, typval_T *tv, type_T **type, int do_member);
|
2020-10-20 14:25:07 +02:00
|
|
|
void hide_script_var(scriptitem_T *si, int idx, int func_defined);
|
2021-07-08 21:38:50 +02:00
|
|
|
svar_T *find_typval_in_script(typval_T *dest);
|
2021-02-11 21:19:34 +01:00
|
|
|
int check_script_var_type(typval_T *dest, typval_T *value, char_u *name, where_T where);
|
2021-05-28 21:06:08 +02:00
|
|
|
int check_reserved_name(char_u *name);
|
2020-01-26 15:56:19 +01:00
|
|
|
/* vim: set ft=c : */
|