2020-01-26 15:56:19 +01:00
|
|
|
/* vim9execute.c */
|
2020-08-12 21:34:49 +02:00
|
|
|
void to_string_error(vartype_T vartype);
|
2022-03-15 15:57:04 +00:00
|
|
|
void update_has_breakpoint(ufunc_T *ufunc);
|
2020-10-10 14:13:01 +02:00
|
|
|
void funcstack_check_refcount(funcstack_T *funcstack);
|
2021-12-14 18:14:37 +00:00
|
|
|
int set_ref_in_funcstacks(int copyID);
|
2022-09-04 15:40:36 +01:00
|
|
|
int in_def_function(void);
|
2022-09-06 21:02:35 +01:00
|
|
|
ectx_T *clear_currrent_ectx(void);
|
|
|
|
void restore_current_ectx(ectx_T *ectx);
|
2022-09-04 15:40:36 +01:00
|
|
|
int add_defer_function(char_u *name, int argcount, typval_T *argvars);
|
2021-01-09 13:20:37 +01:00
|
|
|
char_u *char_from_string(char_u *str, varnumber_T index);
|
2021-01-13 21:47:15 +01:00
|
|
|
char_u *string_slice(char_u *str, varnumber_T first, varnumber_T last, int exclusive);
|
2022-09-16 19:04:24 +01:00
|
|
|
int fill_partial_and_closure(partial_T *pt, ufunc_T *ufunc, short loop_var_idx, short loop_var_count, ectx_T *ectx);
|
2022-04-14 12:58:23 +01:00
|
|
|
int may_load_script(int sid, int *loaded);
|
2021-06-14 20:40:37 +02:00
|
|
|
typval_T *lookup_debug_var(char_u *name);
|
2021-09-02 18:49:06 +02:00
|
|
|
int may_break_in_function(ufunc_T *ufunc);
|
2021-05-07 17:55:55 +02:00
|
|
|
int exe_typval_instr(typval_T *tv, typval_T *rettv);
|
2021-04-19 16:48:48 +02:00
|
|
|
char_u *exe_substitute_instr(void);
|
2022-09-07 16:48:46 +01:00
|
|
|
int call_def_function(ufunc_T *ufunc, int argc_arg, typval_T *argv, int flags, partial_T *partial, funccall_T *funccal, typval_T *rettv);
|
2022-09-06 18:31:14 +01:00
|
|
|
void unwind_def_callstack(ectx_T *ectx);
|
|
|
|
void may_invoke_defer_funcs(ectx_T *ectx);
|
2021-06-13 18:38:48 +02:00
|
|
|
void set_context_in_disassemble_cmd(expand_T *xp, char_u *arg);
|
|
|
|
char_u *get_disassemble_argument(expand_T *xp, int idx);
|
2020-01-26 15:56:19 +01:00
|
|
|
void ex_disassemble(exarg_T *eap);
|
|
|
|
int tv2bool(typval_T *tv);
|
2020-11-12 12:08:51 +01:00
|
|
|
void emsg_using_string_as(typval_T *tv, int as_number);
|
2020-01-26 15:56:19 +01:00
|
|
|
int check_not_string(typval_T *tv);
|
|
|
|
/* vim: set ft=c : */
|