diff src/vim9compile.c @ 20005:49d692e015cc v8.2.0558

patch 8.2.0558: Vim9: dict code not covered by tests Commit: https://github.com/vim/vim/commit/82de464f763d6e6d89229be03ce7c6d02fd5fb59 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Apr 12 18:02:06 2020 +0200 patch 8.2.0558: Vim9: dict code not covered by tests Problem: Vim9: dict code not covered by tests. Solution: Remove dead code, adjust test case.
author Bram Moolenaar <Bram@vim.org>
date Sun, 12 Apr 2020 18:15:03 +0200
parents 502a6c9b3974
children aadd1cae2ff5
line wrap: on
line diff
--- a/src/vim9compile.c
+++ b/src/vim9compile.c
@@ -2788,11 +2788,6 @@ compile_dict(char_u **arg, cctx_T *cctx,
 	*arg = skipwhite(*arg + 1);
     }
 
-    if (**arg != '}')
-    {
-	semsg(_(e_missing_dict_end), *arg);
-	goto failret;
-    }
     *arg = *arg + 1;
 
     // Allow for following comment, after at least one space.