blob: b22bf98bf69a0383af473c85f164c59a1ea6a49e [file] [log] [blame]
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01001/* vim9compile.c */
Bram Moolenaar5269bd22020-03-09 19:25:27 +01002int check_defined(char_u *p, int len, cctx_T *cctx);
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003char_u *skip_type(char_u *start);
4type_T *parse_type(char_u **arg, garray_T *type_list);
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);
Bram Moolenaar4e12a5d2020-02-03 20:50:59 +01008imported_T *find_imported(char_u *name, size_t len, cctx_T *cctx);
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01009char_u *to_name_const_end(char_u *arg);
10int assignment_len(char_u *p, int *heredoc);
11void compile_def_function(ufunc_T *ufunc, int set_return_type);
Bram Moolenaar20431c92020-03-20 18:39:46 +010012void delete_instr(isn_T *isn);
Bram Moolenaar8a7d6542020-01-26 15:56:19 +010013void delete_def_function(ufunc_T *ufunc);
14void free_def_functions(void);
15/* vim: set ft=c : */