comparison src/globals.h @ 33456:4a62e78803db v9.0.1982

patch 9.0.1982: vim9: clean up from v9.0.1955 Commit: https://github.com/vim/vim/commit/64885645e76b301a6c34fe762c4e29c7a0f63881 Author: Ernie Rael <errael@raelity.com> Date: Wed Oct 4 20:16:22 2023 +0200 patch 9.0.1982: vim9: clean up from v9.0.1955 Problem: vim9: clean up from v9.0.1955 Solution: Fix a few remaining issues, improve error message - Use `cl_exec`, the executing class, to check permissions in `get_lval()`. - Handle lockvar of script variable from class. - Add 'in class "Xxx"' to e_cannot_access_private_variable_str. closes: #13222 Signed-off-by: Christian Brabandt <cb@256bit.org> Co-authored-by: Ernie Rael <errael@raelity.com>
author Christian Brabandt <cb@256bit.org>
date Wed, 04 Oct 2023 20:30:03 +0200
parents 016d8f863230
children f4d88db48a63
comparison
equal deleted inserted replaced
33455:d1dddc5cb66e 33456:4a62e78803db
1951 EXTERN int timer_busy INIT(= 0); // when timer is inside vgetc() then > 0 1951 EXTERN int timer_busy INIT(= 0); // when timer is inside vgetc() then > 0
1952 #endif 1952 #endif
1953 #ifdef FEAT_EVAL 1953 #ifdef FEAT_EVAL
1954 EXTERN int input_busy INIT(= 0); // when inside get_user_input() then > 0 1954 EXTERN int input_busy INIT(= 0); // when inside get_user_input() then > 0
1955 1955
1956 EXTERN typval_T *lval_root INIT(= NULL); 1956 EXTERN lval_root_T *lval_root INIT(= NULL);
1957 EXTERN int lval_root_is_arg INIT(= 0);
1958 #endif 1957 #endif
1959 1958
1960 #ifdef FEAT_BEVAL_TERM 1959 #ifdef FEAT_BEVAL_TERM
1961 EXTERN int bevalexpr_due_set INIT(= FALSE); 1960 EXTERN int bevalexpr_due_set INIT(= FALSE);
1962 EXTERN proftime_T bevalexpr_due; 1961 EXTERN proftime_T bevalexpr_due;