summaryrefslogtreecommitdiffstats
path: root/src/vim9expr.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/vim9expr.c')
-rw-r--r--src/vim9expr.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/vim9expr.c b/src/vim9expr.c
index dd938ec60e..c5897faf8b 100644
--- a/src/vim9expr.c
+++ b/src/vim9expr.c
@@ -273,7 +273,8 @@ compile_class_object_index(cctx_T *cctx, char_u **arg, type_T *type)
class_T *cl = (class_T *)type->tt_member;
if (*name_end == '(')
{
- // TODO
+ // TODO: method or function call
+ emsg("compile_class_object_index(): object/class call not handled yet");
}
else if (type->tt_type == VAR_OBJECT)
{
@@ -300,7 +301,7 @@ compile_class_object_index(cctx_T *cctx, char_u **arg, type_T *type)
else
{
// TODO: class member
- emsg("compile_class_object_index(): not handled");
+ emsg("compile_class_object_index(): class member not handled yet");
}
return FAIL;