mirror of
https://github.com/vim/vim.git
synced 2025-11-08 10:27:32 -05:00
patch 8.2.3996: Vim9: type checking lacks information about declared type
Problem: Vim9: type checking for list and dict lacks information about
declared type.
Solution: Add dv_decl_type and lv_decl_type. Refactor the type stack to
store two types in each entry.
This commit is contained in:
@@ -16,7 +16,6 @@ void f_bufwinnr(typval_T *argvars, typval_T *rettv);
|
||||
void f_deletebufline(typval_T *argvars, typval_T *rettv);
|
||||
void f_getbufinfo(typval_T *argvars, typval_T *rettv);
|
||||
void f_getbufline(typval_T *argvars, typval_T *rettv);
|
||||
type_T *ret_f_getline(int argcount, type_T **argtypes);
|
||||
void f_getline(typval_T *argvars, typval_T *rettv);
|
||||
void f_setbufline(typval_T *argvars, typval_T *rettv);
|
||||
void f_setline(typval_T *argvars, typval_T *rettv);
|
||||
|
||||
Reference in New Issue
Block a user