Bram Moolenaar | dc7c366 | 2021-12-20 15:04:29 +0000 | [diff] [blame] | 1 | /* vim9expr.c */ |
| 2 | int generate_ppconst(cctx_T *cctx, ppconst_T *ppconst); |
| 3 | void clear_ppconst(ppconst_T *ppconst); |
| 4 | int compile_member(int is_slice, int *keeping_dict, cctx_T *cctx); |
Hirohito Higashi | 6c01283 | 2025-02-25 20:29:50 +0100 | [diff] [blame] | 5 | int compile_load_scriptvar(cctx_T *cctx, char_u *name, char_u *start, char_u **end, imported_T *import); |
Bram Moolenaar | dc7c366 | 2021-12-20 15:04:29 +0000 | [diff] [blame] | 6 | int compile_load(char_u **arg, char_u *end_arg, cctx_T *cctx, int is_expr, int error); |
Bram Moolenaar | 1d84f76 | 2022-09-03 21:35:53 +0100 | [diff] [blame] | 7 | int compile_arguments(char_u **arg, cctx_T *cctx, int *argcount, ca_special_T special_fn); |
Bram Moolenaar | dc7c366 | 2021-12-20 15:04:29 +0000 | [diff] [blame] | 8 | char_u *to_name_end(char_u *arg, int use_namespace); |
| 9 | char_u *to_name_const_end(char_u *arg); |
| 10 | int get_lambda_tv_and_compile(char_u **arg, typval_T *rettv, int types_optional, evalarg_T *evalarg); |
| 11 | exprtype_T get_compare_type(char_u *p, int *len, int *type_is); |
| 12 | void skip_expr_cctx(char_u **arg, cctx_T *cctx); |
| 13 | int bool_on_stack(cctx_T *cctx); |
| 14 | void error_white_both(char_u *op, int len); |
| 15 | int compile_expr1(char_u **arg, cctx_T *cctx, ppconst_T *ppconst); |
| 16 | int compile_expr0_ext(char_u **arg, cctx_T *cctx, int *is_const); |
| 17 | int compile_expr0(char_u **arg, cctx_T *cctx); |
| 18 | /* vim: set ft=c : */ |