comparison src/proto/vim9execute.pro @ 33532:f99f5a56ff27 v9.0.2015

patch 9.0.2015: Vim9: does not handle islocked() from a method correctly Commit: https://github.com/vim/vim/commit/4c8da025ef8140168b7a09d9fe922ce4bb40f19d Author: Ernie Rael <errael@raelity.com> Date: Wed Oct 11 21:35:11 2023 +0200 patch 9.0.2015: Vim9: does not handle islocked() from a method correctly Problem: Vim9: does not handle islocked() from a method correctly Solution: Handle islocked() builtin from a method. - Setup `lval_root` from `f_islocked()`. - Add function `fill_exec_lval_root()` to get info about executing method. - `sync_root` added in get_lval to handle method member access. - Conservative approach to reference counting. closes: #13309 Signed-off-by: Christian Brabandt <cb@256bit.org> Co-authored-by: Ernie Rael <errael@raelity.com>
author Christian Brabandt <cb@256bit.org>
date Wed, 11 Oct 2023 21:45:04 +0200
parents f088f1d97eee
children 19cdfe768104
comparison
equal deleted inserted replaced
33531:1a769647d661 33532:f99f5a56ff27
2 void to_string_error(vartype_T vartype); 2 void to_string_error(vartype_T vartype);
3 void update_has_breakpoint(ufunc_T *ufunc); 3 void update_has_breakpoint(ufunc_T *ufunc);
4 int funcstack_check_refcount(funcstack_T *funcstack); 4 int funcstack_check_refcount(funcstack_T *funcstack);
5 int set_ref_in_funcstacks(int copyID); 5 int set_ref_in_funcstacks(int copyID);
6 int in_def_function(void); 6 int in_def_function(void);
7 int fill_exec_lval_root(lval_root_T *lr);
7 ectx_T *clear_current_ectx(void); 8 ectx_T *clear_current_ectx(void);
8 void restore_current_ectx(ectx_T *ectx); 9 void restore_current_ectx(ectx_T *ectx);
9 int add_defer_function(char_u *name, int argcount, typval_T *argvars); 10 int add_defer_function(char_u *name, int argcount, typval_T *argvars);
10 char_u *char_from_string(char_u *str, varnumber_T index); 11 char_u *char_from_string(char_u *str, varnumber_T index);
11 char_u *string_slice(char_u *str, varnumber_T first, varnumber_T last, int exclusive); 12 char_u *string_slice(char_u *str, varnumber_T first, varnumber_T last, int exclusive);