summaryrefslogtreecommitdiffstats
path: root/src/proto/vim9class.pro
diff options
context:
space:
mode:
authorYegappan Lakshmanan <yegappan@yahoo.com>2024-03-28 10:36:42 +0100
committerChristian Brabandt <cb@256bit.org>2024-03-28 10:38:28 +0100
commit3164cf8f12f14b725b918e3170bb0a9085af8298 (patch)
tree3bd541655187532df3adead11c8f2afb3a733b8f /src/proto/vim9class.pro
parent8ede7a069419e0e01368c65a2d0c79d6332aa6cd (diff)
patch 9.1.0219: Vim9: No enum supportv9.1.0219
Problem: No enum support Solution: Implement enums for Vim9 script (Yegappan Lakshmanan) closes: #14224 Signed-off-by: Yegappan Lakshmanan <yegappan@yahoo.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
Diffstat (limited to 'src/proto/vim9class.pro')
-rw-r--r--src/proto/vim9class.pro1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/proto/vim9class.pro b/src/proto/vim9class.pro
index 1ed175e69f..d3d3b99be3 100644
--- a/src/proto/vim9class.pro
+++ b/src/proto/vim9class.pro
@@ -3,6 +3,7 @@ int object_index_from_itf_index(class_T *itf, int is_method, int idx, class_T *c
int is_valid_builtin_obj_methodname(char_u *funcname);
ufunc_T *class_get_builtin_method(class_T *cl, class_builtin_T builtin_method, int *method_idx);
void ex_class(exarg_T *eap);
+void enum_set_internal_obj_vars(class_T *en, object_T *enval);
type_T *oc_member_type(class_T *cl, int is_object, char_u *name, char_u *name_end, int *member_idx);
type_T *oc_member_type_by_idx(class_T *cl, int is_object, int member_idx);
void ex_enum(exarg_T *eap);