Mercurial > vim
view src/proto/vim9expr.pro @ 33684:45f8f451fa15 v9.0.2079
patch 9.0.2079: Not all Dart files detected
Commit: https://github.com/vim/vim/commit/c1c177a47bfe1b9a524ede2743a689e461668d14
Author: Doug Kearns <dougkearns@gmail.com>
Date: Sat Oct 28 21:19:54 2023 +0200
patch 9.0.2079: Not all Dart files detected
Problem: Not all Dart files detected
Solution: Add shebang filetype detection for Dart
closes: #13449
Signed-off-by: Doug Kearns <dougkearns@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sat, 28 Oct 2023 21:30:07 +0200 |
parents | 6cf788ab844c |
children |
line wrap: on
line source
/* vim9expr.c */ int generate_ppconst(cctx_T *cctx, ppconst_T *ppconst); void clear_ppconst(ppconst_T *ppconst); int compile_member(int is_slice, int *keeping_dict, cctx_T *cctx); int compile_load_scriptvar(cctx_T *cctx, char_u *name, char_u *start, char_u **end); int compile_load(char_u **arg, char_u *end_arg, cctx_T *cctx, int is_expr, int error); int compile_arguments(char_u **arg, cctx_T *cctx, int *argcount, ca_special_T special_fn); char_u *to_name_end(char_u *arg, int use_namespace); char_u *to_name_const_end(char_u *arg); int get_lambda_tv_and_compile(char_u **arg, typval_T *rettv, int types_optional, evalarg_T *evalarg); exprtype_T get_compare_type(char_u *p, int *len, int *type_is); void skip_expr_cctx(char_u **arg, cctx_T *cctx); int bool_on_stack(cctx_T *cctx); void error_white_both(char_u *op, int len); int compile_expr1(char_u **arg, cctx_T *cctx, ppconst_T *ppconst); int compile_expr0_ext(char_u **arg, cctx_T *cctx, int *is_const); int compile_expr0(char_u **arg, cctx_T *cctx); /* vim: set ft=c : */