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);
|
2022-03-22 12:13:54 +00:00
|
|
|
void clear_vim9_scriptlocal_vars(int sid);
|
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);
|
2022-08-24 16:30:36 +01:00
|
|
|
void import_check_sourced_sid(int *sid);
|
2022-02-08 21:17:22 +00:00
|
|
|
int find_exported(int sid, char_u *name, ufunc_T **ufunc, type_T **type, cctx_T *cctx, cstack_T *cstack, int verbose);
|
2020-06-13 18:09:19 +02:00
|
|
|
char_u *vim9_declare_scriptvar(exarg_T *eap, char_u *arg);
|
2022-01-10 18:08:00 +00:00
|
|
|
void update_vim9_script_var(int create, dictitem_T *di, char_u *name, 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);
|
2022-04-04 14:58:06 +01:00
|
|
|
svar_T *find_typval_in_script(typval_T *dest, scid_T sid, int must_find);
|
2021-11-26 17:36:51 +00:00
|
|
|
int check_script_var_type(svar_T *sv, typval_T *value, char_u *name, where_T where);
|
2023-05-19 19:01:17 +01:00
|
|
|
int check_reserved_name(char_u *name, int is_objm_access);
|
2020-01-26 15:56:19 +01:00
|
|
|
/* vim: set ft=c : */
|