comparison src/testdir/test_float_func.vim @ 27457:4c16acb2525f v8.2.4257

patch 8.2.4257: Vim9: finding global function without g: prefix inconsistent Commit: https://github.com/vim/vim/commit/62aec93bfdb9e1b40d03a6d2e8e9511f8b1bdb2d Author: Bram Moolenaar <Bram@vim.org> Date: Sat Jan 29 21:45:34 2022 +0000 patch 8.2.4257: Vim9: finding global function without g: prefix inconsistent Problem: Vim9: finding global function without g: prefix but not finding global variable is inconsistent. Solution: Require using g: for a global function. Change the vim9.vim script into a Vim9 script with exports. Fix that import in legacy script does not work.
author Bram Moolenaar <Bram@vim.org>
date Sat, 29 Jan 2022 23:00:05 +0100
parents a07323eb647f
children 029c59bf78f1
comparison
equal deleted inserted replaced
27456:a8e2d91995ce 27457:4c16acb2525f
1 " test float functions 1 " test float functions
2 2
3 source check.vim 3 source check.vim
4 CheckFeature float 4 CheckFeature float
5 source vim9.vim 5 import './vim9.vim' as v9
6 6
7 func Test_abs() 7 func Test_abs()
8 call assert_equal('1.23', string(abs(1.23))) 8 call assert_equal('1.23', string(abs(1.23)))
9 call assert_equal('1.23', string(abs(-1.23))) 9 call assert_equal('1.23', string(abs(-1.23)))
10 eval -1.23->abs()->string()->assert_equal('1.23') 10 eval -1.23->abs()->string()->assert_equal('1.23')
244 call assert_equal('123456.789', string(str2float("1'2'3'4'5'6.789", 1))) 244 call assert_equal('123456.789', string(str2float("1'2'3'4'5'6.789", 1)))
245 call assert_equal('1.0', string(str2float("1''2.3", 1))) 245 call assert_equal('1.0', string(str2float("1''2.3", 1)))
246 call assert_equal('123456.7', string(str2float("123'456.7'89", 1))) 246 call assert_equal('123456.7', string(str2float("123'456.7'89", 1)))
247 247
248 call assert_equal(1.2, str2float(1.2, 0)) 248 call assert_equal(1.2, str2float(1.2, 0))
249 call CheckDefAndScriptFailure(['str2float(1.2)'], ['E1013: Argument 1: type mismatch, expected string but got float', 'E1174: String required for argument 1']) 249 call v9.CheckDefAndScriptFailure(['str2float(1.2)'], ['E1013: Argument 1: type mismatch, expected string but got float', 'E1174: String required for argument 1'])
250 call assert_fails("call str2float([])", 'E730:') 250 call assert_fails("call str2float([])", 'E730:')
251 call assert_fails("call str2float({})", 'E731:') 251 call assert_fails("call str2float({})", 'E731:')
252 call assert_fails("call str2float(function('string'))", 'E729:') 252 call assert_fails("call str2float(function('string'))", 'E729:')
253 endfunc 253 endfunc
254 254