1/* vim9compile.c */ 2int check_defined(char_u *p, int len, cctx_T *cctx); 3char_u *skip_type(char_u *start); 4type_T *parse_type(char_u **arg, garray_T *type_gap); 5char *vartype_name(vartype_T type); 6char *type_name(type_T *type, char **tofree); 7int get_script_item_idx(int sid, char_u *name, int check_writable); 8imported_T *find_imported(char_u *name, size_t len, cctx_T *cctx); 9char_u *to_name_const_end(char_u *arg); 10int assignment_len(char_u *p, int *heredoc); 11int check_vim9_unlet(char_u *name); 12int add_def_function(ufunc_T *ufunc); 13void compile_def_function(ufunc_T *ufunc, int set_return_type, cctx_T *outer_cctx); 14void delete_instr(isn_T *isn); 15void delete_def_function(ufunc_T *ufunc); 16void free_def_functions(void); 17/* vim: set ft=c : */ 18