comparison src/structs.h @ 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 1f9b1def80c8
children 86dbcbb94fdb
comparison
equal deleted inserted replaced
33531:1a769647d661 33532:f99f5a56ff27
4602 int ll_is_root; // TRUE if ll_tv is the lval_root, like a 4602 int ll_is_root; // TRUE if ll_tv is the lval_root, like a
4603 // plain object/class. ll_tv is variable. 4603 // plain object/class. ll_tv is variable.
4604 } lval_T; 4604 } lval_T;
4605 4605
4606 /** 4606 /**
4607 * This may be used to specify the base type that get_lval() uses when 4607 * This may be used to specify the base typval that get_lval() uses when
4608 * following a chain, for example a[idx1][idx2]. 4608 * following a chain, for example a[idx1][idx2].
4609 * The lr_sync_root flags signals get_lval that the first time through
4610 * the indexing loop, skip handling '.' and '[idx]'.
4609 */ 4611 */
4610 typedef struct lval_root_S { 4612 typedef struct lval_root_S {
4611 typval_T *lr_tv; 4613 typval_T *lr_tv;
4612 class_T *lr_cl_exec; // executing class for access checking 4614 class_T *lr_cl_exec; // executing class for access checking
4613 int lr_is_arg; 4615 int lr_is_arg;
4616 int lr_sync_root;
4614 } lval_root_T; 4617 } lval_root_T;
4615 4618
4616 // Structure used to save the current state. Used when executing Normal mode 4619 // Structure used to save the current state. Used when executing Normal mode
4617 // commands while in any other mode. 4620 // commands while in any other mode.
4618 typedef struct { 4621 typedef struct {