Bram Moolenaar | dc7c366 | 2021-12-20 15:04:29 +0000 | [diff] [blame] | 1 | /* vim9cmds.c */ |
| 2 | void free_locals(cctx_T *cctx); |
| 3 | int check_vim9_unlet(char_u *name); |
| 4 | char_u *compile_unletlock(char_u *arg, exarg_T *eap, cctx_T *cctx); |
| 5 | void drop_scope(cctx_T *cctx); |
| 6 | char_u *compile_if(char_u *arg, cctx_T *cctx); |
| 7 | char_u *compile_elseif(char_u *arg, cctx_T *cctx); |
| 8 | char_u *compile_else(char_u *arg, cctx_T *cctx); |
| 9 | char_u *compile_endif(char_u *arg, cctx_T *cctx); |
| 10 | char_u *compile_for(char_u *arg_start, cctx_T *cctx); |
| 11 | char_u *compile_endfor(char_u *arg, cctx_T *cctx); |
| 12 | char_u *compile_while(char_u *arg, cctx_T *cctx); |
| 13 | char_u *compile_endwhile(char_u *arg, cctx_T *cctx); |
Bram Moolenaar | cc34181 | 2022-09-19 15:54:34 +0100 | [diff] [blame] | 14 | int get_loop_var_info(cctx_T *cctx, loopvarinfo_T *lvi); |
| 15 | void get_loop_var_idx(cctx_T *cctx, int idx, lvar_T *lvar); |
Bram Moolenaar | dc7c366 | 2021-12-20 15:04:29 +0000 | [diff] [blame] | 16 | char_u *compile_continue(char_u *arg, cctx_T *cctx); |
| 17 | char_u *compile_break(char_u *arg, cctx_T *cctx); |
| 18 | char_u *compile_block(char_u *arg, cctx_T *cctx); |
| 19 | void compile_endblock(cctx_T *cctx); |
| 20 | char_u *compile_try(char_u *arg, cctx_T *cctx); |
| 21 | char_u *compile_catch(char_u *arg, cctx_T *cctx); |
| 22 | char_u *compile_finally(char_u *arg, cctx_T *cctx); |
| 23 | char_u *compile_endtry(char_u *arg, cctx_T *cctx); |
| 24 | char_u *compile_throw(char_u *arg, cctx_T *cctx); |
| 25 | char_u *compile_eval(char_u *arg, cctx_T *cctx); |
Bram Moolenaar | 806a273 | 2022-09-04 15:40:36 +0100 | [diff] [blame] | 26 | int get_defer_var_idx(cctx_T *cctx); |
Bram Moolenaar | 1d84f76 | 2022-09-03 21:35:53 +0100 | [diff] [blame] | 27 | char_u *compile_defer(char_u *arg_start, cctx_T *cctx); |
Bram Moolenaar | bdc09a1 | 2022-10-07 14:31:45 +0100 | [diff] [blame] | 28 | char_u *compile_mult_expr(char_u *arg, int cmdidx, long cmd_count, cctx_T *cctx); |
Christian Brabandt | 762a79e | 2025-03-16 21:39:58 +0100 | [diff] [blame] | 29 | char_u *compile_put(char_u *arg, exarg_T *eap, cctx_T *cctx); |
Bram Moolenaar | dc7c366 | 2021-12-20 15:04:29 +0000 | [diff] [blame] | 30 | char_u *compile_exec(char_u *line_arg, exarg_T *eap, cctx_T *cctx); |
| 31 | char_u *compile_script(char_u *line, cctx_T *cctx); |
| 32 | char_u *compile_substitute(char_u *arg, exarg_T *eap, cctx_T *cctx); |
| 33 | char_u *compile_redir(char_u *line, exarg_T *eap, cctx_T *cctx); |
| 34 | char_u *compile_cexpr(char_u *line, exarg_T *eap, cctx_T *cctx); |
| 35 | char_u *compile_return(char_u *arg, int check_return_type, int legacy, cctx_T *cctx); |
| 36 | int check_global_and_subst(char_u *cmd, char_u *arg); |
| 37 | /* vim: set ft=c : */ |