comparison src/proto/vim9class.pro @ 33286:0c3553cfe22e v9.0.1909

patch 9.0.1909: Vim9: problem calling class method from other class Commit: https://github.com/vim/vim/commit/00cd18222ee1551c65228e9556c158624507fc7a Author: Yegappan Lakshmanan <yegappan@yahoo.com> Date: Mon Sep 18 19:56:49 2023 +0200 patch 9.0.1909: Vim9: problem calling class method from other class Problem: Vim9: problem calling class method from other class Solution: Fix this problem, fix readonly object access, update error messages. Calling a class method from another method without the class name prefix doesn't work properly. A readonly object variable is modifiable outside the class using a nested object assignment. Remove the unused E1338 error message. Update error messages. closes: #13116 Signed-off-by: Christian Brabandt <cb@256bit.org> Co-authored-by: Yegappan Lakshmanan <yegappan@yahoo.com>
author Christian Brabandt <cb@256bit.org>
date Mon, 18 Sep 2023 20:00:12 +0200
parents aba1fa2b7d1e
children 577ef266309d
comparison
equal deleted inserted replaced
33285:a24779258892 33286:0c3553cfe22e
1 /* vim9class.c */ 1 /* vim9class.c */
2 int object_index_from_itf_index(class_T *itf, int is_method, int idx, class_T *cl, int is_static); 2 int object_index_from_itf_index(class_T *itf, int is_method, int idx, class_T *cl, int is_static);
3 void ex_class(exarg_T *eap); 3 void ex_class(exarg_T *eap);
4 type_T *class_member_type(class_T *cl, int is_object, char_u *name, char_u *name_end, int *member_idx, ocmember_T **m); 4 type_T *class_member_type(class_T *cl, int is_object, char_u *name, char_u *name_end, int *member_idx);
5 void ex_enum(exarg_T *eap); 5 void ex_enum(exarg_T *eap);
6 void ex_type(exarg_T *eap); 6 void ex_type(exarg_T *eap);
7 int class_object_index(char_u **arg, typval_T *rettv, evalarg_T *evalarg, int verbose); 7 int class_object_index(char_u **arg, typval_T *rettv, evalarg_T *evalarg, int verbose);
8 ufunc_T *find_class_func(char_u **arg); 8 ufunc_T *find_class_func(char_u **arg);
9 int class_member_idx(class_T *cl, char_u *name, size_t namelen); 9 int class_member_idx(class_T *cl, char_u *name, size_t namelen);