]> git.ipfire.org Git - thirdparty/vim.git/commitdiff
patch 9.0.1801: Vim9 instanceof() fails in a def func v9.0.1801
authorYegappan Lakshmanan <yegappan@yahoo.com>
Sun, 27 Aug 2023 17:08:40 +0000 (19:08 +0200)
committerChristian Brabandt <cb@256bit.org>
Sun, 27 Aug 2023 17:08:40 +0000 (19:08 +0200)
Problem:  Vim9 instanceof() fails in a def func
Solution: allow Objects in compile time check

closes: #12907

Signed-off-by: Christian Brabandt <cb@256bit.org>
Co-authored-by: Yegappan Lakshmanan <yegappan@yahoo.com>
src/evalfunc.c
src/testdir/test_vim9_builtin.vim
src/testdir/test_vim9_class.vim
src/version.c

index bdfd6325fed841919063b18d00bd6acaf049599a..2cd1985a0643202d4f44d61c9cc24d5cba1488fe 100644 (file)
@@ -282,7 +282,11 @@ arg_number(type_T *type, type_T *decl_type UNUSED, argcontext_T *context)
     static int
 arg_object(type_T *type, type_T *decl_type UNUSED, argcontext_T *context)
 {
-    return check_arg_type(&t_object, type, context);
+    if (type->tt_type == VAR_OBJECT
+           || type_any_or_unknown(type))
+       return OK;
+    arg_type_mismatch(&t_object, type, context->arg_idx + 1);
+    return FAIL;
 }
 
 /*
index da8bc4299f995114c9d9fbae7ca4a8283af4be63..dc5f3362b32047894dbcf61dafaa0299e3646b80 100644 (file)
@@ -2317,6 +2317,28 @@ def Test_instanceof()
     instanceof(Foo.new(), 123)
   END
   v9.CheckScriptFailure(lines, 'E693: List or Class required for argument 2')
+
+  lines =<< trim END
+    vim9script
+    class Foo
+    endclass
+    def Bar()
+      instanceof('hello', Foo)
+    enddef
+    Bar()
+  END
+  v9.CheckScriptFailure(lines, 'E1013: Argument 1: type mismatch, expected object<Unknown> but got string')
+
+  lines =<< trim END
+    vim9script
+    class Foo
+    endclass
+    def Bar()
+      instanceof(Foo.new(), 123)
+    enddef
+    Bar()
+  END
+  v9.CheckScriptFailure(lines, 'E1013: Argument 2: type mismatch, expected class<Unknown> but got number')
 enddef
 
 def Test_invert()
index 2c6a501b45df0b0c8c44c2b307ff26fcf10a24ec..5f5528aebd1d3f04cb9d35c63a64d978977371a5 100644 (file)
@@ -2436,6 +2436,20 @@ def Test_instanceof()
     assert_true(instanceof(b3, Mix1))
     assert_false(instanceof(b3, []))
     assert_true(instanceof(b3, [Base1, Base2, Intf1]))
+
+    def Foo()
+      var a1 = Base1.new()
+      var a2 = Base2.new()
+      var a3 = Base3.new()
+
+      assert_true(instanceof(a1, Base1))
+      assert_true(instanceof(a2, Base1))
+      assert_false(instanceof(a1, Base2))
+      assert_true(instanceof(a3, Mix1))
+      assert_false(instanceof(a3, []))
+      assert_true(instanceof(a3, [Base1, Base2, Intf1]))
+    enddef
+    Foo()
   END
   v9.CheckScriptSuccess(lines)
 enddef
index e686da6a5a2589a0f928a15dcf27e5afe0c96e14..431ac38cbdd7ac7b868c6da4a55a928d0e32cdaa 100644 (file)
@@ -699,6 +699,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    1801,
 /**/
     1800,
 /**/