Mercurial > vim
view src/proto/vim9script.pro @ 20207:3c247d9cd6f9 v8.2.0659
patch 8.2.0659: Vim9: no test for equal func type
Commit: https://github.com/vim/vim/commit/939b5db4808770d3a2ec35e3902a9d5165adc0cf
Author: Bram Moolenaar <Bram@vim.org>
Date: Tue Apr 28 22:49:08 2020 +0200
patch 8.2.0659: Vim9: no test for equal func type
Problem: Vim9: no test for equal func type.
Solution: Add a test. Improve type check.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Tue, 28 Apr 2020 23:00:04 +0200 |
parents | 2fee087c94cb |
children | 0600ab7b9f09 |
line wrap: on
line source
/* vim9script.c */ int in_vim9script(void); void ex_vim9script(exarg_T *eap); void ex_export(exarg_T *eap); void free_imports(int sid); void ex_import(exarg_T *eap); int find_exported(int sid, char_u **argp, int *name_len, ufunc_T **ufunc, type_T **type); char_u *handle_import(char_u *arg_start, garray_T *gap, int import_sid, void *cctx); /* vim: set ft=c : */