1/* vim9compile.c */ 2int check_defined(char_u *p, size_t len, cctx_T *cctx); 3int check_compare_types(exptype_T type, typval_T *tv1, typval_T *tv2); 4int get_script_item_idx(int sid, char_u *name, int check_writable, cctx_T *cctx); 5imported_T *find_imported(char_u *name, size_t len, cctx_T *cctx); 6imported_T *find_imported_in_script(char_u *name, size_t len, int sid); 7int vim9_comment_start(char_u *p); 8char_u *peek_next_line_from_context(cctx_T *cctx); 9char_u *next_line_from_context(cctx_T *cctx, int skip_comment); 10char_u *to_name_const_end(char_u *arg); 11exptype_T get_compare_type(char_u *p, int *len, int *type_is); 12void error_white_both(char_u *op, int len); 13int assignment_len(char_u *p, int *heredoc); 14void vim9_declare_error(char_u *name); 15int check_vim9_unlet(char_u *name); 16int compile_def_function(ufunc_T *ufunc, int set_return_type, cctx_T *outer_cctx); 17void set_function_type(ufunc_T *ufunc); 18void delete_instr(isn_T *isn); 19void clear_def_function(ufunc_T *ufunc); 20void unlink_def_function(ufunc_T *ufunc); 21void free_def_functions(void); 22/* vim: set ft=c : */ 23