]> git.ipfire.org Git - thirdparty/vim.git/commitdiff
patch 9.1.0520: Vim9: incorrect type checking for modifying lists v9.1.0520
authorLemonBoy <thatlemon@gmail.com>
Thu, 4 Jul 2024 11:43:12 +0000 (13:43 +0200)
committerChristian Brabandt <cb@256bit.org>
Thu, 4 Jul 2024 11:43:12 +0000 (13:43 +0200)
Problem:  Vim9: incorrect type checking for modifying lists
Solution: Correctly assign the member declared types and generate
          typechecks, add disassembly test (LemonBoy)

fixes: #15090
closes: #15094

Signed-off-by: LemonBoy <thatlemon@gmail.com>
Signed-off-by: Yegappan Lakshmanan <yegappan@yahoo.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
src/testdir/test_vim9_class.vim
src/testdir/test_vim9_disassemble.vim
src/version.c
src/vim9class.c
src/vim9compile.c

index a043f8c6999409d35eb3966d82253d3693e6224f..f0c27de99bf269c509f988e06ed2a70865b6a5ae 100644 (file)
@@ -10776,4 +10776,37 @@ def Test_class_object_index()
   v9.CheckScriptFailure(lines, 'E689: Index not allowed after a object: a[10] = 1', 5)
 enddef
 
+def Test_class_member_init_typecheck()
+  # Ensure the class member is assigned its declared type.
+  var lines =<< trim END
+    vim9script
+    class S
+        static var l: list<string> = []
+    endclass
+    S.l->add(123)
+  END
+  v9.CheckScriptFailure(lines, 'E1012: Type mismatch; expected string but got number', 5)
+
+  # Ensure the initializer value and the declared type match.
+  lines =<< trim END
+    vim9script
+    class S
+        var l: list<string> = [1, 2, 3]
+    endclass
+    var o = S.new()
+  END
+  v9.CheckScriptFailure(lines, 'E1382: Variable "l": type mismatch, expected list<string> but got list<number>')
+
+  # Ensure the class member is assigned its declared type.
+  lines =<< trim END
+    vim9script
+    class S
+        var l: list<string> = []
+    endclass
+    var o = S.new()
+    o.l->add(123)
+  END
+  v9.CheckScriptFailure(lines, 'E1012: Type mismatch; expected string but got number', 6)
+enddef
+
 " vim: ts=8 sw=2 sts=2 expandtab tw=80 fdm=marker
index c74cce4482a6443876035c24727130573f394c5e..89dcceed5757e8c1298bf5fd1a3cf05c42cf5703 100644 (file)
@@ -3496,4 +3496,26 @@ def Test_disassemble_compound_op_in_closure()
   unlet g:instr
 enddef
 
+def Test_disassemble_member_initializer()
+  var lines =<< trim END
+    vim9script
+    class A
+      var l: list<string> = []
+      var d: dict<string> = {}
+    endclass
+    g:instr = execute('disassemble A.new')
+  END
+  v9.CheckScriptSuccess(lines)
+  # Ensure SETTYPE is emitted and that matches the declared type.
+  assert_match('new\_s*' ..
+   '0 NEW A size \d\+\_s*' ..
+   '1 NEWLIST size 0\_s*' ..
+   '2 SETTYPE list<string>\_s*' ..
+   '3 STORE_THIS 0\_s*' ..
+   '4 NEWDICT size 0\_s*' ..
+   '5 SETTYPE dict<string>\_s*' ..
+   '6 STORE_THIS 1', g:instr)
+  unlet g:instr
+enddef
+
 " vim: ts=8 sw=2 sts=2 expandtab tw=80 fdm=marker
index 966088de22c0c501115c8a98832d12fe8fda5ffe..ec993ab6bb008a80869424e3f1f710b45915f2ca 100644 (file)
@@ -704,6 +704,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    520,
 /**/
     519,
 /**/
index 5d68459de851e63ceae254d15f74d44666b9a72b..cf2af613252fbba05b1822bced44afa98e19c474 100644 (file)
@@ -1280,6 +1280,7 @@ add_class_members(class_T *cl, exarg_T *eap, garray_T *type_list_gap)
            tv->v_type = m->ocm_type->tt_type;
            tv->vval.v_string = NULL;
        }
+       set_tv_type(tv, m->ocm_type);
        if (m->ocm_flags & OCMFLAG_CONST)
            item_lock(tv, DICT_MAXNEST, TRUE, TRUE);
     }
index 8e6f6e23fd1f33e21f9f60f6d0c379ab61e605d5..61fefa767ed33d94f58b38324448cc4096e9bad2 100644 (file)
@@ -3315,7 +3315,7 @@ obj_constructor_prologue(ufunc_T *ufunc, cctx_T *cctx)
                // the initialization expression type.
                m->ocm_type = type;
            }
-           else if (m->ocm_type->tt_type != type->tt_type)
+           else
            {
                // The type of the member initialization expression is
                // determined at run time.  Add a runtime type check.
@@ -3330,6 +3330,15 @@ obj_constructor_prologue(ufunc_T *ufunc, cctx_T *cctx)
        else
            push_default_value(cctx, m->ocm_type->tt_type, FALSE, NULL);
 
+       if ((m->ocm_type->tt_type == VAR_DICT
+                   || m->ocm_type->tt_type == VAR_LIST)
+               && m->ocm_type->tt_member != NULL
+               && m->ocm_type->tt_member != &t_any
+               && m->ocm_type->tt_member != &t_unknown)
+           // Set the type in the list or dict, so that it can be checked,
+           // also in legacy script.
+           generate_SETTYPE(cctx, m->ocm_type);
+
        generate_STORE_THIS(cctx, i);
     }