comparison src/proto/evalvars.pro @ 19283:9dc843109c97 v8.2.0200

patch 8.2.0200: Vim9 script commands not sufficiently tested Commit: https://github.com/vim/vim/commit/b283a8a6802ef8a46b17cb439f9514840c03698f Author: Bram Moolenaar <Bram@vim.org> Date: Sun Feb 2 22:24:04 2020 +0100 patch 8.2.0200: Vim9 script commands not sufficiently tested Problem: Vim9 script commands not sufficiently tested. Solution: Add more tests. Fix storing global variable. Make script variables work.
author Bram Moolenaar <Bram@vim.org>
date Sun, 02 Feb 2020 22:30:04 +0100
parents 94eda51ba9ba
children dcec86d796bc
comparison
equal deleted inserted replaced
19282:0d513180baa1 19283:9dc843109c97
31 int find_vim_var(char_u *name); 31 int find_vim_var(char_u *name);
32 void set_vim_var_type(int idx, vartype_T type); 32 void set_vim_var_type(int idx, vartype_T type);
33 void set_vim_var_nr(int idx, varnumber_T val); 33 void set_vim_var_nr(int idx, varnumber_T val);
34 char *get_vim_var_name(int idx); 34 char *get_vim_var_name(int idx);
35 typval_T *get_vim_var_tv(int idx); 35 typval_T *get_vim_var_tv(int idx);
36 int set_vim_var_tv(int idx, typval_T *tv);
36 varnumber_T get_vim_var_nr(int idx); 37 varnumber_T get_vim_var_nr(int idx);
37 char_u *get_vim_var_str(int idx); 38 char_u *get_vim_var_str(int idx);
38 list_T *get_vim_var_list(int idx); 39 list_T *get_vim_var_list(int idx);
39 dict_T *get_vim_var_dict(int idx); 40 dict_T *get_vim_var_dict(int idx);
40 void set_vim_var_char(int c); 41 void set_vim_var_char(int c);