comparison src/testdir/test_vim9_script.vim @ 23884:00e904bdb8a5 v8.2.2484

patch 8.2.2484: Vim9: Cannot use a comment starting with #{ Commit: https://github.com/vim/vim/commit/dee37dc733df444df1950eb922a35560e4b113d6 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Feb 7 16:40:05 2021 +0100 patch 8.2.2484: Vim9: Cannot use a comment starting with #{ Problem: Vim9: Cannot use a comment starting with #{ after an expression. Solution: Remove the check for "{" since #{ dictionaries are not supported.
author Bram Moolenaar <Bram@vim.org>
date Sun, 07 Feb 2021 16:45:04 +0100
parents a4df35126d9c
children eef0cffbdb94
comparison
equal deleted inserted replaced
23883:2d3c3106eb98 23884:00e904bdb8a5
2203 continue 2203 continue
2204 endif 2204 endif
2205 result ..= cnt .. '_' 2205 result ..= cnt .. '_'
2206 endwhile 2206 endwhile
2207 assert_equal('1_3_', result) 2207 assert_equal('1_3_', result)
2208
2209 var s = ''
2210 while s == 'x' #{comment
2211 endwhile
2208 enddef 2212 enddef
2209 2213
2210 def Test_while_loop_fails() 2214 def Test_while_loop_fails()
2211 CheckDefFailure(['while xxx'], 'E1001:') 2215 CheckDefFailure(['while xxx'], 'E1001:')
2212 CheckDefFailure(['endwhile'], 'E588:') 2216 CheckDefFailure(['endwhile'], 'E588:')