blob: 233cfa22674bb3f03745052edd880fb380af7c91 [file] [log] [blame]
Bram Moolenaardc7c3662021-12-20 15:04:29 +00001/* vim9expr.c */
2int generate_ppconst(cctx_T *cctx, ppconst_T *ppconst);
3void clear_ppconst(ppconst_T *ppconst);
4int compile_member(int is_slice, int *keeping_dict, cctx_T *cctx);
Bram Moolenaard0132f42022-05-12 11:05:40 +01005int compile_load_scriptvar(cctx_T *cctx, char_u *name, char_u *start, char_u **end);
Bram Moolenaardc7c3662021-12-20 15:04:29 +00006int compile_load(char_u **arg, char_u *end_arg, cctx_T *cctx, int is_expr, int error);
7char_u *to_name_end(char_u *arg, int use_namespace);
8char_u *to_name_const_end(char_u *arg);
9int get_lambda_tv_and_compile(char_u **arg, typval_T *rettv, int types_optional, evalarg_T *evalarg);
10exprtype_T get_compare_type(char_u *p, int *len, int *type_is);
11void skip_expr_cctx(char_u **arg, cctx_T *cctx);
12int bool_on_stack(cctx_T *cctx);
13void error_white_both(char_u *op, int len);
14int compile_expr1(char_u **arg, cctx_T *cctx, ppconst_T *ppconst);
15int compile_expr0_ext(char_u **arg, cctx_T *cctx, int *is_const);
16int compile_expr0(char_u **arg, cctx_T *cctx);
17/* vim: set ft=c : */