comparison src/proto/eval.pro @ 27517:f00a7a2bee21 v8.2.4286

patch 8.2.4286: Vim9: strict type checking after copy() and deepcopy() Commit: https://github.com/vim/vim/commit/381692b6f1c2ec9b73a139500286ddc9347a1c01 Author: Bram Moolenaar <Bram@vim.org> Date: Wed Feb 2 20:01:27 2022 +0000 patch 8.2.4286: Vim9: strict type checking after copy() and deepcopy() Problem: Vim9: strict type checking after copy() and deepcopy(). Solution: Allow type to change after making a copy. (closes https://github.com/vim/vim/issues/9644)
author Bram Moolenaar <Bram@vim.org>
date Wed, 02 Feb 2022 21:15:03 +0100
parents ebe56a24acb6
children 1012048eed26
comparison
equal deleted inserted replaced
27516:fdcbdd530e4c 27517:f00a7a2bee21
67 char_u *find_name_end(char_u *arg, char_u **expr_start, char_u **expr_end, int flags); 67 char_u *find_name_end(char_u *arg, char_u **expr_start, char_u **expr_end, int flags);
68 int eval_isnamec(int c); 68 int eval_isnamec(int c);
69 int eval_isnamec1(int c); 69 int eval_isnamec1(int c);
70 int eval_isdictc(int c); 70 int eval_isdictc(int c);
71 int handle_subscript(char_u **arg, char_u *name_start, typval_T *rettv, evalarg_T *evalarg, int verbose); 71 int handle_subscript(char_u **arg, char_u *name_start, typval_T *rettv, evalarg_T *evalarg, int verbose);
72 int item_copy(typval_T *from, typval_T *to, int deep, int copyID); 72 int item_copy(typval_T *from, typval_T *to, int deep, int top, int copyID);
73 void echo_one(typval_T *rettv, int with_space, int *atstart, int *needclr); 73 void echo_one(typval_T *rettv, int with_space, int *atstart, int *needclr);
74 void ex_echo(exarg_T *eap); 74 void ex_echo(exarg_T *eap);
75 void ex_echohl(exarg_T *eap); 75 void ex_echohl(exarg_T *eap);
76 int get_echo_attr(void); 76 int get_echo_attr(void);
77 void ex_execute(exarg_T *eap); 77 void ex_execute(exarg_T *eap);