xref: /vim-8.2.3635/src/proto/vim9execute.pro (revision 26a4484d)
1/* vim9execute.c */
2void to_string_error(vartype_T vartype);
3void funcstack_check_refcount(funcstack_T *funcstack);
4char_u *char_from_string(char_u *str, varnumber_T index);
5char_u *string_slice(char_u *str, varnumber_T first, varnumber_T last, int exclusive);
6int fill_partial_and_closure(partial_T *pt, ufunc_T *ufunc, ectx_T *ectx);
7typval_T *lookup_debug_var(char_u *name);
8int may_break_in_function(ufunc_T *ufunc);
9int exe_typval_instr(typval_T *tv, typval_T *rettv);
10char_u *exe_substitute_instr(void);
11int call_def_function(ufunc_T *ufunc, int argc_arg, typval_T *argv, partial_T *partial, typval_T *rettv);
12void set_context_in_disassemble_cmd(expand_T *xp, char_u *arg);
13char_u *get_disassemble_argument(expand_T *xp, int idx);
14void ex_disassemble(exarg_T *eap);
15int tv2bool(typval_T *tv);
16void emsg_using_string_as(typval_T *tv, int as_number);
17int check_not_string(typval_T *tv);
18/* vim: set ft=c : */
19