forked from aniani/vim
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>
This commit is contained in:
committed by
Christian Brabandt
parent
0583491277
commit
64885645e7
@@ -3411,7 +3411,7 @@ EXTERN char e_public_must_be_followed_by_this_or_static[]
|
||||
EXTERN char e_public_variable_name_cannot_start_with_underscore_str[]
|
||||
INIT(= N_("E1332: Public variable name cannot start with underscore: %s"));
|
||||
EXTERN char e_cannot_access_private_variable_str[]
|
||||
INIT(= N_("E1333: Cannot access private variable: %s"));
|
||||
INIT(= N_("E1333: Cannot access private variable \"%s\" in class \"%s\""));
|
||||
// E1334 unused
|
||||
EXTERN char e_variable_is_not_writable_str[]
|
||||
INIT(= N_("E1335: Variable \"%s\" in class \"%s\" is not writable"));
|
||||
|
||||
Reference in New Issue
Block a user