]> granicus.if.org Git - vim/commitdiff
patch 9.0.1296: calling an object method with arguments does not work v9.0.1296
authorBram Moolenaar <Bram@vim.org>
Fri, 10 Feb 2023 15:52:25 +0000 (15:52 +0000)
committerBram Moolenaar <Bram@vim.org>
Fri, 10 Feb 2023 15:52:25 +0000 (15:52 +0000)
Problem:    Calling an object method with arguments does not work. (Ernie
            Rael)
Solution:   Take the argument count into account when looking up the object.
            (closes #11911)

src/testdir/test_vim9_class.vim
src/version.c
src/vim9execute.c

index 0f812f1cd859ec67a241b1404381b44c7d440229..be9b18e3a9bb3094605844946a126654238e7a62 100644 (file)
@@ -1373,6 +1373,47 @@ def Test_class_extends()
   v9.CheckScriptSuccess(lines)
 enddef
 
+def Test_using_base_class()
+  var lines =<< trim END
+    vim9script
+
+    class BaseEE
+        def Enter(): any
+            return null
+        enddef
+        def Exit(resource: any): void
+        enddef
+    endclass
+
+    class ChildEE extends BaseEE
+        def Enter(): any
+            return 42
+        enddef
+
+        def Exit(resource: number): void
+            g:result ..= '/exit'
+        enddef
+    endclass
+
+    def With(ee: BaseEE)
+        var r = ee.Enter()
+        try
+            g:result ..= r
+        finally
+            g:result ..= '/finally'
+            ee.Exit(r)
+        endtry
+    enddef
+
+    g:result = ''
+    With(ChildEE.new())
+    assert_equal('42/finally/exit', g:result)
+  END
+  v9.CheckScriptSuccess(lines)
+  unlet g:result
+enddef
+
+
 def Test_class_import()
   var lines =<< trim END
       vim9script
index 0f259bcb78ddd8e43fa964e3db91656d62c83c17..421380030e31b314628b089a4f16ee127e109559 100644 (file)
@@ -695,6 +695,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    1296,
 /**/
     1295,
 /**/
index 605cfb25c8af1fddb96525563252fa79bd808df7..49042a4afec1532b77e3ba11b6e9cf0d6588a2cb 100644 (file)
@@ -4143,8 +4143,10 @@ exec_instructions(ectx_T *ectx)
            // call a method on an interface
            case ISN_METHODCALL:
                {
+                   cmfunc_T *mfunc = iptr->isn_arg.mfunc;
+
                    SOURCING_LNUM = iptr->isn_lnum;
-                   tv = STACK_TV_BOT(-1);
+                   tv = STACK_TV_BOT(-1 - mfunc->cmf_argcount);
                    if (tv->v_type != VAR_OBJECT)
                    {
                        object_required_error(tv);
@@ -4154,7 +4156,6 @@ exec_instructions(ectx_T *ectx)
                    class_T *cl = obj->obj_class;
 
                    // convert the interface index to the object index
-                   cmfunc_T *mfunc = iptr->isn_arg.mfunc;
                    int idx = object_index_from_itf_index(mfunc->cmf_itf,
                                                    TRUE, mfunc->cmf_idx, cl);