2020-01-26 15:56:19 +01:00
|
|
|
" Test various aspects of the Vim9 script language.
|
|
|
|
|
2020-01-26 16:50:05 +01:00
|
|
|
source check.vim
|
2020-06-16 23:18:51 +02:00
|
|
|
source term_util.vim
|
2020-02-26 18:23:43 +01:00
|
|
|
source view_util.vim
|
2020-04-25 20:02:55 +02:00
|
|
|
source vim9.vim
|
2020-08-29 13:39:17 +02:00
|
|
|
source shared.vim
|
2020-01-26 15:56:19 +01:00
|
|
|
|
|
|
|
def Test_syntax()
|
|
|
|
let var = 234
|
|
|
|
let other: list<string> = ['asdf']
|
|
|
|
enddef
|
|
|
|
|
2020-08-20 23:04:06 +02:00
|
|
|
def Test_range_only()
|
|
|
|
new
|
|
|
|
setline(1, ['blah', 'Blah'])
|
|
|
|
:/Blah/
|
|
|
|
assert_equal(2, getcurpos()[1])
|
2020-08-23 21:06:02 +02:00
|
|
|
bwipe!
|
|
|
|
|
|
|
|
# without range commands use current line
|
|
|
|
new
|
|
|
|
setline(1, ['one', 'two', 'three'])
|
|
|
|
:2
|
|
|
|
print
|
|
|
|
assert_equal('two', Screenline(&lines))
|
|
|
|
:3
|
|
|
|
list
|
|
|
|
assert_equal('three$', Screenline(&lines))
|
|
|
|
bwipe!
|
2020-08-20 23:04:06 +02:00
|
|
|
enddef
|
|
|
|
|
2020-02-06 13:15:52 +01:00
|
|
|
let s:appendToMe = 'xxx'
|
|
|
|
let s:addToMe = 111
|
2020-02-19 18:14:44 +01:00
|
|
|
let g:existing = 'yes'
|
2020-04-01 21:17:24 +02:00
|
|
|
let g:inc_counter = 1
|
|
|
|
let $SOME_ENV_VAR = 'some'
|
2020-05-15 23:36:40 +02:00
|
|
|
let g:alist = [7]
|
|
|
|
let g:astring = 'text'
|
2020-07-17 23:03:17 +02:00
|
|
|
let g:anumber = 123
|
2020-02-06 13:15:52 +01:00
|
|
|
|
2020-09-09 18:54:42 +02:00
|
|
|
def Test_assignment_bool()
|
2020-01-26 15:56:19 +01:00
|
|
|
let bool1: bool = true
|
|
|
|
assert_equal(v:true, bool1)
|
|
|
|
let bool2: bool = false
|
|
|
|
assert_equal(v:false, bool2)
|
|
|
|
|
2020-09-09 14:55:31 +02:00
|
|
|
let bool3: bool = 0
|
2020-09-09 20:03:46 +02:00
|
|
|
assert_equal(false, bool3)
|
2020-09-09 14:55:31 +02:00
|
|
|
let bool4: bool = 1
|
2020-09-09 20:03:46 +02:00
|
|
|
assert_equal(true, bool4)
|
|
|
|
|
|
|
|
let bool5: bool = 'yes' && 'no'
|
|
|
|
assert_equal(true, bool5)
|
|
|
|
let bool6: bool = [] && 99
|
|
|
|
assert_equal(false, bool6)
|
|
|
|
let bool7: bool = [] || #{a: 1} && 99
|
|
|
|
assert_equal(true, bool7)
|
2020-09-09 14:55:31 +02:00
|
|
|
|
2020-09-09 18:54:42 +02:00
|
|
|
let lines =<< trim END
|
|
|
|
vim9script
|
|
|
|
def GetFlag(): bool
|
|
|
|
let flag: bool = 1
|
|
|
|
return flag
|
|
|
|
enddef
|
|
|
|
let flag: bool = GetFlag()
|
2020-09-09 20:03:46 +02:00
|
|
|
assert_equal(true, flag)
|
2020-09-09 18:54:42 +02:00
|
|
|
flag = 0
|
2020-09-09 22:27:58 +02:00
|
|
|
assert_equal(false, flag)
|
2020-09-09 18:54:42 +02:00
|
|
|
flag = 1
|
2020-09-09 22:27:58 +02:00
|
|
|
assert_equal(true, flag)
|
|
|
|
flag = 99 || 123
|
|
|
|
assert_equal(true, flag)
|
|
|
|
flag = 'yes' && []
|
|
|
|
assert_equal(false, flag)
|
2020-09-09 18:54:42 +02:00
|
|
|
END
|
|
|
|
CheckScriptSuccess(lines)
|
|
|
|
CheckDefAndScriptFailure(['let x: bool = 2'], 'E1012:')
|
|
|
|
CheckDefAndScriptFailure(['let x: bool = -1'], 'E1012:')
|
|
|
|
CheckDefAndScriptFailure(['let x: bool = [1]'], 'E1012:')
|
|
|
|
CheckDefAndScriptFailure(['let x: bool = {}'], 'E1012:')
|
|
|
|
CheckDefAndScriptFailure(['let x: bool = "x"'], 'E1012:')
|
|
|
|
enddef
|
|
|
|
|
|
|
|
def Test_assignment()
|
2020-09-06 15:58:36 +02:00
|
|
|
CheckDefFailure(['let x:string'], 'E1069:')
|
|
|
|
CheckDefFailure(['let x:string = "x"'], 'E1069:')
|
|
|
|
CheckDefFailure(['let a:string = "x"'], 'E1069:')
|
|
|
|
CheckDefFailure(['let lambda = {-> "lambda"}'], 'E704:')
|
2020-04-23 22:16:53 +02:00
|
|
|
|
2020-07-22 21:45:14 +02:00
|
|
|
let nr: number = 1234
|
2020-09-06 15:58:36 +02:00
|
|
|
CheckDefFailure(['let nr: number = "asdf"'], 'E1012:')
|
2020-07-22 21:45:14 +02:00
|
|
|
|
2020-07-19 17:17:02 +02:00
|
|
|
let a: number = 6 #comment
|
2020-03-30 22:51:24 +02:00
|
|
|
assert_equal(6, a)
|
|
|
|
|
2020-02-29 23:23:47 +01:00
|
|
|
if has('channel')
|
|
|
|
let chan1: channel
|
2020-03-01 14:04:46 +01:00
|
|
|
let job1: job
|
2020-03-01 17:55:14 +01:00
|
|
|
let job2: job = job_start('willfail')
|
2020-02-29 23:23:47 +01:00
|
|
|
endif
|
2020-03-01 14:04:46 +01:00
|
|
|
if has('float')
|
|
|
|
let float1: float = 3.4
|
|
|
|
endif
|
2020-04-05 17:08:17 +02:00
|
|
|
let Funky1: func
|
|
|
|
let Funky2: func = function('len')
|
2020-04-27 22:47:51 +02:00
|
|
|
let Party2: func = funcref('g:Test_syntax')
|
2020-02-29 23:23:47 +01:00
|
|
|
|
2020-07-19 17:17:02 +02:00
|
|
|
g:newvar = 'new' #comment
|
2020-02-19 18:14:44 +01:00
|
|
|
assert_equal('new', g:newvar)
|
|
|
|
|
|
|
|
assert_equal('yes', g:existing)
|
|
|
|
g:existing = 'no'
|
|
|
|
assert_equal('no', g:existing)
|
|
|
|
|
2020-02-02 22:24:04 +01:00
|
|
|
v:char = 'abc'
|
2020-02-06 13:15:52 +01:00
|
|
|
assert_equal('abc', v:char)
|
2020-02-02 22:24:04 +01:00
|
|
|
|
|
|
|
$ENVVAR = 'foobar'
|
2020-02-06 13:15:52 +01:00
|
|
|
assert_equal('foobar', $ENVVAR)
|
2020-02-02 22:24:04 +01:00
|
|
|
$ENVVAR = ''
|
2020-02-06 13:15:52 +01:00
|
|
|
|
2020-07-28 22:38:37 +02:00
|
|
|
let lines =<< trim END
|
|
|
|
vim9script
|
|
|
|
$ENVVAR = 'barfoo'
|
|
|
|
assert_equal('barfoo', $ENVVAR)
|
|
|
|
$ENVVAR = ''
|
|
|
|
END
|
2020-09-06 15:58:36 +02:00
|
|
|
CheckScriptSuccess(lines)
|
2020-07-28 22:38:37 +02:00
|
|
|
|
2020-02-19 20:23:11 +01:00
|
|
|
s:appendToMe ..= 'yyy'
|
|
|
|
assert_equal('xxxyyy', s:appendToMe)
|
|
|
|
s:addToMe += 222
|
|
|
|
assert_equal(333, s:addToMe)
|
2020-02-19 22:31:48 +01:00
|
|
|
s:newVar = 'new'
|
|
|
|
assert_equal('new', s:newVar)
|
2020-04-01 21:17:24 +02:00
|
|
|
|
|
|
|
set ts=7
|
|
|
|
&ts += 1
|
|
|
|
assert_equal(8, &ts)
|
2020-04-01 23:05:18 +02:00
|
|
|
&ts -= 3
|
|
|
|
assert_equal(5, &ts)
|
|
|
|
&ts *= 2
|
|
|
|
assert_equal(10, &ts)
|
|
|
|
&ts /= 3
|
|
|
|
assert_equal(3, &ts)
|
|
|
|
set ts=10
|
|
|
|
&ts %= 4
|
|
|
|
assert_equal(2, &ts)
|
2020-07-28 22:38:37 +02:00
|
|
|
|
2020-08-19 22:02:41 +02:00
|
|
|
if has('float')
|
|
|
|
let f100: float = 100.0
|
|
|
|
f100 /= 5
|
|
|
|
assert_equal(20.0, f100)
|
|
|
|
|
|
|
|
let f200: float = 200.0
|
|
|
|
f200 /= 5.0
|
|
|
|
assert_equal(40.0, f200)
|
|
|
|
|
|
|
|
CheckDefFailure(['let nr: number = 200', 'nr /= 5.0'], 'E1012:')
|
|
|
|
endif
|
|
|
|
|
2020-07-28 22:38:37 +02:00
|
|
|
lines =<< trim END
|
|
|
|
&ts = 6
|
|
|
|
&ts += 3
|
|
|
|
assert_equal(9, &ts)
|
2020-08-23 19:34:48 +02:00
|
|
|
|
|
|
|
&l:ts = 6
|
|
|
|
assert_equal(6, &ts)
|
|
|
|
&l:ts += 2
|
|
|
|
assert_equal(8, &ts)
|
|
|
|
|
|
|
|
&g:ts = 6
|
|
|
|
assert_equal(6, &g:ts)
|
|
|
|
&g:ts += 2
|
|
|
|
assert_equal(8, &g:ts)
|
2020-07-28 22:38:37 +02:00
|
|
|
END
|
2020-08-23 19:34:48 +02:00
|
|
|
CheckDefAndScriptSuccess(lines)
|
2020-08-16 21:29:05 +02:00
|
|
|
|
|
|
|
CheckDefFailure(['¬ex += 3'], 'E113:')
|
|
|
|
CheckDefFailure(['&ts ..= "xxx"'], 'E1019:')
|
|
|
|
CheckDefFailure(['&ts = [7]'], 'E1012:')
|
2020-09-16 15:22:00 +02:00
|
|
|
CheckDefExecFailure(['&ts = g:alist'], 'E1012: Type mismatch; expected number but got list<number>')
|
2020-08-16 21:29:05 +02:00
|
|
|
CheckDefFailure(['&ts = "xx"'], 'E1012:')
|
2020-09-16 15:22:00 +02:00
|
|
|
CheckDefExecFailure(['&ts = g:astring'], 'E1012: Type mismatch; expected number but got string')
|
2020-08-16 21:29:05 +02:00
|
|
|
CheckDefFailure(['&path += 3'], 'E1012:')
|
|
|
|
CheckDefExecFailure(['&bs = "asdf"'], 'E474:')
|
2020-04-16 13:00:29 +02:00
|
|
|
# test freeing ISN_STOREOPT
|
2020-08-16 21:29:05 +02:00
|
|
|
CheckDefFailure(['&ts = 3', 'let asdf'], 'E1022:')
|
2020-04-01 23:05:18 +02:00
|
|
|
&ts = 8
|
2020-04-01 21:17:24 +02:00
|
|
|
|
2020-08-16 21:29:05 +02:00
|
|
|
lines =<< trim END
|
|
|
|
let save_TI = &t_TI
|
|
|
|
&t_TI = ''
|
|
|
|
assert_equal('', &t_TI)
|
|
|
|
&t_TI = 'xxx'
|
|
|
|
assert_equal('xxx', &t_TI)
|
|
|
|
&t_TI = save_TI
|
|
|
|
END
|
2020-09-09 18:54:42 +02:00
|
|
|
CheckDefAndScriptSuccess(lines)
|
2020-08-16 21:29:05 +02:00
|
|
|
|
|
|
|
CheckDefFailure(['&t_TI = 123'], 'E1012:')
|
|
|
|
CheckScriptFailure(['vim9script', '&t_TI = 123'], 'E928:')
|
|
|
|
|
|
|
|
CheckDefFailure(['let s:var = 123'], 'E1101:')
|
|
|
|
CheckDefFailure(['let s:var: number'], 'E1101:')
|
2020-07-29 19:18:00 +02:00
|
|
|
|
2020-08-05 14:34:14 +02:00
|
|
|
lines =<< trim END
|
|
|
|
vim9script
|
|
|
|
def SomeFunc()
|
|
|
|
s:var = 123
|
|
|
|
enddef
|
|
|
|
defcompile
|
|
|
|
END
|
2020-09-06 15:58:36 +02:00
|
|
|
CheckScriptFailure(lines, 'E1089:')
|
2020-08-05 14:34:14 +02:00
|
|
|
|
2020-04-01 21:17:24 +02:00
|
|
|
g:inc_counter += 1
|
|
|
|
assert_equal(2, g:inc_counter)
|
|
|
|
|
|
|
|
$SOME_ENV_VAR ..= 'more'
|
|
|
|
assert_equal('somemore', $SOME_ENV_VAR)
|
2020-09-06 15:58:36 +02:00
|
|
|
CheckDefFailure(['$SOME_ENV_VAR += "more"'], 'E1051:')
|
|
|
|
CheckDefFailure(['$SOME_ENV_VAR += 123'], 'E1012:')
|
2020-04-01 21:17:24 +02:00
|
|
|
|
2020-07-28 22:38:37 +02:00
|
|
|
lines =<< trim END
|
|
|
|
@c = 'areg'
|
|
|
|
@c ..= 'add'
|
|
|
|
assert_equal('aregadd', @c)
|
|
|
|
END
|
2020-08-23 19:34:48 +02:00
|
|
|
CheckDefAndScriptSuccess(lines)
|
|
|
|
|
2020-09-06 15:58:36 +02:00
|
|
|
CheckDefFailure(['@a += "more"'], 'E1051:')
|
|
|
|
CheckDefFailure(['@a += 123'], 'E1012:')
|
2020-07-28 22:38:37 +02:00
|
|
|
|
2020-04-01 22:11:01 +02:00
|
|
|
v:errmsg = 'none'
|
|
|
|
v:errmsg ..= 'again'
|
|
|
|
assert_equal('noneagain', v:errmsg)
|
2020-09-06 15:58:36 +02:00
|
|
|
CheckDefFailure(['v:errmsg += "more"'], 'E1051:')
|
|
|
|
CheckDefFailure(['v:errmsg += 123'], 'E1012:')
|
2020-07-29 19:18:00 +02:00
|
|
|
|
|
|
|
# single letter variables
|
|
|
|
a = 123
|
|
|
|
assert_equal(123, a)
|
|
|
|
let b: number
|
|
|
|
b = 123
|
|
|
|
assert_equal(123, b)
|
|
|
|
let g: number
|
|
|
|
g = 123
|
|
|
|
assert_equal(123, g)
|
|
|
|
let s: number
|
|
|
|
s = 123
|
|
|
|
assert_equal(123, s)
|
|
|
|
let t: number
|
|
|
|
t = 123
|
|
|
|
assert_equal(123, t)
|
|
|
|
let v: number
|
|
|
|
v = 123
|
|
|
|
assert_equal(123, v)
|
|
|
|
let w: number
|
|
|
|
w = 123
|
|
|
|
assert_equal(123, w)
|
2020-04-05 17:08:17 +02:00
|
|
|
enddef
|
|
|
|
|
2020-06-19 19:01:43 +02:00
|
|
|
def Test_vim9_single_char_vars()
|
|
|
|
let lines =<< trim END
|
|
|
|
vim9script
|
|
|
|
|
2020-07-17 20:36:00 +02:00
|
|
|
# single character variable declarations work
|
2020-06-19 19:01:43 +02:00
|
|
|
let a: string
|
|
|
|
let b: number
|
|
|
|
let l: list<any>
|
|
|
|
let s: string
|
|
|
|
let t: number
|
|
|
|
let v: number
|
|
|
|
let w: number
|
|
|
|
|
2020-07-17 20:36:00 +02:00
|
|
|
# script-local variables can be used without s: prefix
|
2020-06-19 19:01:43 +02:00
|
|
|
a = 'script-a'
|
|
|
|
b = 111
|
|
|
|
l = [1, 2, 3]
|
|
|
|
s = 'script-s'
|
|
|
|
t = 222
|
|
|
|
v = 333
|
|
|
|
w = 444
|
|
|
|
|
|
|
|
assert_equal('script-a', a)
|
|
|
|
assert_equal(111, b)
|
|
|
|
assert_equal([1, 2, 3], l)
|
|
|
|
assert_equal('script-s', s)
|
|
|
|
assert_equal(222, t)
|
|
|
|
assert_equal(333, v)
|
|
|
|
assert_equal(444, w)
|
|
|
|
END
|
|
|
|
writefile(lines, 'Xsinglechar')
|
|
|
|
source Xsinglechar
|
|
|
|
delete('Xsinglechar')
|
|
|
|
enddef
|
|
|
|
|
2020-05-18 14:20:36 +02:00
|
|
|
def Test_assignment_list()
|
|
|
|
let list1: list<bool> = [false, true, false]
|
|
|
|
let list2: list<number> = [1, 2, 3]
|
|
|
|
let list3: list<string> = ['sdf', 'asdf']
|
|
|
|
let list4: list<any> = ['yes', true, 1234]
|
|
|
|
let list5: list<blob> = [0z01, 0z02]
|
|
|
|
|
|
|
|
let listS: list<string> = []
|
|
|
|
let listN: list<number> = []
|
|
|
|
|
|
|
|
assert_equal([1, 2, 3], list2)
|
|
|
|
list2[-1] = 99
|
|
|
|
assert_equal([1, 2, 99], list2)
|
|
|
|
list2[-2] = 88
|
|
|
|
assert_equal([1, 88, 99], list2)
|
|
|
|
list2[-3] = 77
|
|
|
|
assert_equal([77, 88, 99], list2)
|
2020-08-07 20:46:20 +02:00
|
|
|
list2 += [100]
|
|
|
|
assert_equal([77, 88, 99, 100], list2)
|
|
|
|
|
|
|
|
list3 += ['end']
|
|
|
|
assert_equal(['sdf', 'asdf', 'end'], list3)
|
|
|
|
|
2020-09-06 15:58:36 +02:00
|
|
|
CheckDefExecFailure(['let ll = [1, 2, 3]', 'll[-4] = 6'], 'E684:')
|
|
|
|
CheckDefExecFailure(['let [v1, v2] = [1, 2]'], 'E1092:')
|
2020-05-18 14:20:36 +02:00
|
|
|
|
|
|
|
# type becomes list<any>
|
|
|
|
let somelist = rand() > 0 ? [1, 2, 3] : ['a', 'b', 'c']
|
|
|
|
enddef
|
|
|
|
|
2020-07-20 22:37:44 +02:00
|
|
|
def Test_assignment_list_vim9script()
|
|
|
|
let lines =<< trim END
|
|
|
|
vim9script
|
|
|
|
let v1: number
|
|
|
|
let v2: number
|
|
|
|
let v3: number
|
|
|
|
[v1, v2, v3] = [1, 2, 3]
|
|
|
|
assert_equal([1, 2, 3], [v1, v2, v3])
|
|
|
|
END
|
2020-09-06 15:58:36 +02:00
|
|
|
CheckScriptSuccess(lines)
|
2020-07-20 22:37:44 +02:00
|
|
|
enddef
|
|
|
|
|
2020-05-18 14:20:36 +02:00
|
|
|
def Test_assignment_dict()
|
|
|
|
let dict1: dict<bool> = #{one: false, two: true}
|
|
|
|
let dict2: dict<number> = #{one: 1, two: 2}
|
|
|
|
let dict3: dict<string> = #{key: 'value'}
|
|
|
|
let dict4: dict<any> = #{one: 1, two: '2'}
|
2020-05-21 21:50:58 +02:00
|
|
|
let dict5: dict<blob> = #{one: 0z01, two: 0z02}
|
2020-05-18 14:20:36 +02:00
|
|
|
|
2020-07-17 20:36:00 +02:00
|
|
|
# overwrite
|
2020-06-19 18:34:15 +02:00
|
|
|
dict3['key'] = 'another'
|
|
|
|
|
2020-08-01 14:06:38 +02:00
|
|
|
# empty key can be used
|
|
|
|
let dd = {}
|
|
|
|
dd[""] = 6
|
|
|
|
assert_equal({'': 6}, dd)
|
2020-05-18 14:20:36 +02:00
|
|
|
|
|
|
|
# type becomes dict<any>
|
|
|
|
let somedict = rand() > 0 ? #{a: 1, b: 2} : #{a: 'a', b: 'b'}
|
2020-08-01 15:38:38 +02:00
|
|
|
|
|
|
|
# assignment to script-local dict
|
|
|
|
let lines =<< trim END
|
|
|
|
vim9script
|
|
|
|
let test: dict<any> = {}
|
|
|
|
def FillDict(): dict<any>
|
|
|
|
test['a'] = 43
|
|
|
|
return test
|
|
|
|
enddef
|
|
|
|
assert_equal(#{a: 43}, FillDict())
|
|
|
|
END
|
2020-09-14 17:04:31 +02:00
|
|
|
CheckScriptSuccess(lines)
|
2020-08-01 15:38:38 +02:00
|
|
|
|
|
|
|
lines =<< trim END
|
|
|
|
vim9script
|
|
|
|
let test: dict<any>
|
|
|
|
def FillDict(): dict<any>
|
|
|
|
test['a'] = 43
|
|
|
|
return test
|
|
|
|
enddef
|
|
|
|
FillDict()
|
|
|
|
END
|
2020-09-14 17:04:31 +02:00
|
|
|
CheckScriptFailure(lines, 'E1103:')
|
2020-08-01 15:53:19 +02:00
|
|
|
|
|
|
|
# assignment to global dict
|
|
|
|
lines =<< trim END
|
|
|
|
vim9script
|
|
|
|
g:test = {}
|
|
|
|
def FillDict(): dict<any>
|
|
|
|
g:test['a'] = 43
|
|
|
|
return g:test
|
|
|
|
enddef
|
|
|
|
assert_equal(#{a: 43}, FillDict())
|
|
|
|
END
|
2020-09-14 17:04:31 +02:00
|
|
|
CheckScriptSuccess(lines)
|
2020-08-01 15:53:19 +02:00
|
|
|
|
|
|
|
# assignment to buffer dict
|
|
|
|
lines =<< trim END
|
|
|
|
vim9script
|
|
|
|
b:test = {}
|
|
|
|
def FillDict(): dict<any>
|
|
|
|
b:test['a'] = 43
|
|
|
|
return b:test
|
|
|
|
enddef
|
|
|
|
assert_equal(#{a: 43}, FillDict())
|
|
|
|
END
|
2020-09-14 17:04:31 +02:00
|
|
|
CheckScriptSuccess(lines)
|
2020-05-18 14:20:36 +02:00
|
|
|
enddef
|
|
|
|
|
2020-04-19 14:32:17 +02:00
|
|
|
def Test_assignment_local()
|
2020-07-17 20:36:00 +02:00
|
|
|
# Test in a separated file in order not to the current buffer/window/tab is
|
|
|
|
# changed.
|
2020-04-19 14:32:17 +02:00
|
|
|
let script_lines: list<string> =<< trim END
|
|
|
|
let b:existing = 'yes'
|
|
|
|
let w:existing = 'yes'
|
|
|
|
let t:existing = 'yes'
|
|
|
|
|
|
|
|
def Test_assignment_local_internal()
|
|
|
|
b:newvar = 'new'
|
|
|
|
assert_equal('new', b:newvar)
|
|
|
|
assert_equal('yes', b:existing)
|
|
|
|
b:existing = 'no'
|
|
|
|
assert_equal('no', b:existing)
|
2020-05-09 18:44:56 +02:00
|
|
|
b:existing ..= 'NO'
|
|
|
|
assert_equal('noNO', b:existing)
|
2020-04-19 14:32:17 +02:00
|
|
|
|
|
|
|
w:newvar = 'new'
|
|
|
|
assert_equal('new', w:newvar)
|
|
|
|
assert_equal('yes', w:existing)
|
|
|
|
w:existing = 'no'
|
|
|
|
assert_equal('no', w:existing)
|
2020-05-09 18:44:56 +02:00
|
|
|
w:existing ..= 'NO'
|
|
|
|
assert_equal('noNO', w:existing)
|
2020-04-19 14:32:17 +02:00
|
|
|
|
|
|
|
t:newvar = 'new'
|
|
|
|
assert_equal('new', t:newvar)
|
|
|
|
assert_equal('yes', t:existing)
|
|
|
|
t:existing = 'no'
|
|
|
|
assert_equal('no', t:existing)
|
2020-05-09 18:44:56 +02:00
|
|
|
t:existing ..= 'NO'
|
|
|
|
assert_equal('noNO', t:existing)
|
2020-04-19 14:32:17 +02:00
|
|
|
enddef
|
|
|
|
call Test_assignment_local_internal()
|
|
|
|
END
|
2020-09-14 17:04:31 +02:00
|
|
|
CheckScriptSuccess(script_lines)
|
2020-04-19 14:32:17 +02:00
|
|
|
enddef
|
|
|
|
|
2020-04-05 17:08:17 +02:00
|
|
|
def Test_assignment_default()
|
2020-04-01 22:11:01 +02:00
|
|
|
|
2020-04-16 13:00:29 +02:00
|
|
|
# Test default values.
|
2020-04-01 22:11:01 +02:00
|
|
|
let thebool: bool
|
|
|
|
assert_equal(v:false, thebool)
|
|
|
|
|
|
|
|
let thenumber: number
|
|
|
|
assert_equal(0, thenumber)
|
|
|
|
|
|
|
|
if has('float')
|
|
|
|
let thefloat: float
|
|
|
|
assert_equal(0.0, thefloat)
|
|
|
|
endif
|
|
|
|
|
|
|
|
let thestring: string
|
|
|
|
assert_equal('', thestring)
|
|
|
|
|
|
|
|
let theblob: blob
|
|
|
|
assert_equal(0z, theblob)
|
|
|
|
|
2020-04-05 17:08:17 +02:00
|
|
|
let Thefunc: func
|
|
|
|
assert_equal(test_null_function(), Thefunc)
|
2020-04-01 22:11:01 +02:00
|
|
|
|
|
|
|
let thelist: list<any>
|
|
|
|
assert_equal([], thelist)
|
|
|
|
|
|
|
|
let thedict: dict<any>
|
|
|
|
assert_equal({}, thedict)
|
|
|
|
|
2020-04-02 19:12:08 +02:00
|
|
|
if has('channel')
|
|
|
|
let thejob: job
|
|
|
|
assert_equal(test_null_job(), thejob)
|
2020-04-01 22:11:01 +02:00
|
|
|
|
2020-04-02 19:12:08 +02:00
|
|
|
let thechannel: channel
|
|
|
|
assert_equal(test_null_channel(), thechannel)
|
2020-06-19 18:34:15 +02:00
|
|
|
|
|
|
|
if has('unix') && executable('cat')
|
2020-07-17 20:36:00 +02:00
|
|
|
# check with non-null job and channel, types must match
|
2020-06-19 18:34:15 +02:00
|
|
|
thejob = job_start("cat ", #{})
|
|
|
|
thechannel = job_getchannel(thejob)
|
|
|
|
job_stop(thejob, 'kill')
|
|
|
|
endif
|
2020-04-02 19:12:08 +02:00
|
|
|
endif
|
2020-04-02 22:33:21 +02:00
|
|
|
|
|
|
|
let nr = 1234 | nr = 5678
|
|
|
|
assert_equal(5678, nr)
|
2020-01-26 15:56:19 +01:00
|
|
|
enddef
|
|
|
|
|
2020-06-14 23:05:10 +02:00
|
|
|
def Test_assignment_var_list()
|
|
|
|
let v1: string
|
|
|
|
let v2: string
|
2020-06-16 11:34:42 +02:00
|
|
|
let vrem: list<string>
|
|
|
|
[v1] = ['aaa']
|
|
|
|
assert_equal('aaa', v1)
|
|
|
|
|
2020-06-14 23:05:10 +02:00
|
|
|
[v1, v2] = ['one', 'two']
|
|
|
|
assert_equal('one', v1)
|
|
|
|
assert_equal('two', v2)
|
2020-06-16 11:34:42 +02:00
|
|
|
|
|
|
|
[v1, v2; vrem] = ['one', 'two']
|
|
|
|
assert_equal('one', v1)
|
|
|
|
assert_equal('two', v2)
|
|
|
|
assert_equal([], vrem)
|
|
|
|
|
|
|
|
[v1, v2; vrem] = ['one', 'two', 'three']
|
|
|
|
assert_equal('one', v1)
|
|
|
|
assert_equal('two', v2)
|
|
|
|
assert_equal(['three'], vrem)
|
2020-08-07 21:28:34 +02:00
|
|
|
|
|
|
|
[&ts, &sw] = [3, 4]
|
|
|
|
assert_equal(3, &ts)
|
|
|
|
assert_equal(4, &sw)
|
|
|
|
set ts=8 sw=4
|
2020-06-14 23:05:10 +02:00
|
|
|
enddef
|
|
|
|
|
2020-07-29 21:37:43 +02:00
|
|
|
def Test_assignment_vim9script()
|
|
|
|
let lines =<< trim END
|
|
|
|
vim9script
|
|
|
|
def Func(): list<number>
|
|
|
|
return [1, 2]
|
|
|
|
enddef
|
|
|
|
let var1: number
|
|
|
|
let var2: number
|
|
|
|
[var1, var2] =
|
|
|
|
Func()
|
|
|
|
assert_equal(1, var1)
|
|
|
|
assert_equal(2, var2)
|
|
|
|
let ll =
|
|
|
|
Func()
|
|
|
|
assert_equal([1, 2], ll)
|
2020-08-02 20:40:43 +02:00
|
|
|
|
|
|
|
@/ = 'text'
|
|
|
|
assert_equal('text', @/)
|
|
|
|
@0 = 'zero'
|
|
|
|
assert_equal('zero', @0)
|
|
|
|
@1 = 'one'
|
|
|
|
assert_equal('one', @1)
|
|
|
|
@9 = 'nine'
|
|
|
|
assert_equal('nine', @9)
|
|
|
|
@- = 'minus'
|
|
|
|
assert_equal('minus', @-)
|
|
|
|
if has('clipboard_working')
|
|
|
|
@* = 'star'
|
|
|
|
assert_equal('star', @*)
|
|
|
|
@+ = 'plus'
|
|
|
|
assert_equal('plus', @+)
|
|
|
|
endif
|
2020-08-07 19:28:08 +02:00
|
|
|
|
|
|
|
let a: number = 123
|
|
|
|
assert_equal(123, a)
|
|
|
|
let s: string = 'yes'
|
|
|
|
assert_equal('yes', s)
|
|
|
|
let b: number = 42
|
|
|
|
assert_equal(42, b)
|
|
|
|
let w: number = 43
|
|
|
|
assert_equal(43, w)
|
|
|
|
let t: number = 44
|
|
|
|
assert_equal(44, t)
|
2020-07-29 21:37:43 +02:00
|
|
|
END
|
|
|
|
CheckScriptSuccess(lines)
|
|
|
|
enddef
|
|
|
|
|
2020-04-09 20:10:55 +02:00
|
|
|
def Mess(): string
|
|
|
|
v:foldstart = 123
|
|
|
|
return 'xxx'
|
|
|
|
enddef
|
|
|
|
|
2020-04-19 16:28:59 +02:00
|
|
|
def Test_assignment_failure()
|
2020-09-06 15:58:36 +02:00
|
|
|
CheckDefFailure(['let var=234'], 'E1004:')
|
|
|
|
CheckDefFailure(['let var =234'], 'E1004:')
|
|
|
|
CheckDefFailure(['let var= 234'], 'E1004:')
|
|
|
|
|
|
|
|
CheckScriptFailure(['vim9script', 'let var=234'], 'E1004:')
|
|
|
|
CheckScriptFailure(['vim9script', 'let var=234'], "before and after '='")
|
|
|
|
CheckScriptFailure(['vim9script', 'let var =234'], 'E1004:')
|
|
|
|
CheckScriptFailure(['vim9script', 'let var= 234'], 'E1004:')
|
|
|
|
CheckScriptFailure(['vim9script', 'let var = 234', 'var+=234'], 'E1004:')
|
|
|
|
CheckScriptFailure(['vim9script', 'let var = 234', 'var+=234'], "before and after '+='")
|
|
|
|
CheckScriptFailure(['vim9script', 'let var = "x"', 'var..="y"'], 'E1004:')
|
|
|
|
CheckScriptFailure(['vim9script', 'let var = "x"', 'var..="y"'], "before and after '..='")
|
|
|
|
|
|
|
|
CheckDefFailure(['let true = 1'], 'E1034:')
|
|
|
|
CheckDefFailure(['let false = 1'], 'E1034:')
|
|
|
|
|
|
|
|
CheckDefFailure(['[a; b; c] = g:list'], 'E452:')
|
|
|
|
CheckDefExecFailure(['let a: number',
|
|
|
|
'[a] = test_null_list()'], 'E1093:')
|
|
|
|
CheckDefExecFailure(['let a: number',
|
|
|
|
'[a] = []'], 'E1093:')
|
|
|
|
CheckDefExecFailure(['let x: number',
|
|
|
|
'let y: number',
|
|
|
|
'[x, y] = [1]'], 'E1093:')
|
|
|
|
CheckDefExecFailure(['let x: number',
|
|
|
|
'let y: number',
|
|
|
|
'let z: list<number>',
|
|
|
|
'[x, y; z] = [1]'], 'E1093:')
|
|
|
|
|
|
|
|
CheckDefFailure(['let somevar'], "E1022:")
|
|
|
|
CheckDefFailure(['let &tabstop = 4'], 'E1052:')
|
|
|
|
CheckDefFailure(['&g:option = 5'], 'E113:')
|
|
|
|
CheckScriptFailure(['vim9script', 'let &tabstop = 4'], 'E1052:')
|
|
|
|
|
|
|
|
CheckDefFailure(['let $VAR = 5'], 'E1016: Cannot declare an environment variable:')
|
|
|
|
CheckScriptFailure(['vim9script', 'let $ENV = "xxx"'], 'E1016:')
|
2020-03-30 22:51:24 +02:00
|
|
|
|
2020-08-02 20:03:25 +02:00
|
|
|
if has('dnd')
|
2020-09-06 15:58:36 +02:00
|
|
|
CheckDefFailure(['let @~ = 5'], 'E1066:')
|
2020-08-02 20:03:25 +02:00
|
|
|
else
|
2020-09-06 15:58:36 +02:00
|
|
|
CheckDefFailure(['let @~ = 5'], 'E354:')
|
|
|
|
CheckDefFailure(['@~ = 5'], 'E354:')
|
2020-08-02 20:03:25 +02:00
|
|
|
endif
|
2020-09-06 15:58:36 +02:00
|
|
|
CheckDefFailure(['let @a = 5'], 'E1066:')
|
|
|
|
CheckDefFailure(['let @/ = "x"'], 'E1066:')
|
|
|
|
CheckScriptFailure(['vim9script', 'let @a = "abc"'], 'E1066:')
|
2020-03-30 22:51:24 +02:00
|
|
|
|
2020-09-06 15:58:36 +02:00
|
|
|
CheckDefFailure(['let g:var = 5'], 'E1016: Cannot declare a global variable:')
|
|
|
|
CheckDefFailure(['let w:var = 5'], 'E1016: Cannot declare a window variable:')
|
|
|
|
CheckDefFailure(['let b:var = 5'], 'E1016: Cannot declare a buffer variable:')
|
|
|
|
CheckDefFailure(['let t:var = 5'], 'E1016: Cannot declare a tab variable:')
|
2020-03-30 22:51:24 +02:00
|
|
|
|
2020-09-06 15:58:36 +02:00
|
|
|
CheckDefFailure(['let anr = 4', 'anr ..= "text"'], 'E1019:')
|
|
|
|
CheckDefFailure(['let xnr += 4'], 'E1020:', 1)
|
|
|
|
CheckScriptFailure(['vim9script', 'let xnr += 4'], 'E1020:')
|
|
|
|
CheckDefFailure(["let xnr = xnr + 1"], 'E1001:', 1)
|
|
|
|
CheckScriptFailure(['vim9script', 'let xnr = xnr + 4'], 'E121:')
|
2020-03-30 22:51:24 +02:00
|
|
|
|
2020-09-06 15:58:36 +02:00
|
|
|
CheckScriptFailure(['vim9script', 'def Func()', 'let dummy = s:notfound', 'enddef', 'defcompile'], 'E1108:')
|
2020-03-28 19:41:33 +01:00
|
|
|
|
2020-09-06 15:58:36 +02:00
|
|
|
CheckDefFailure(['let var: list<string> = [123]'], 'expected list<string> but got list<number>')
|
|
|
|
CheckDefFailure(['let var: list<number> = ["xx"]'], 'expected list<number> but got list<string>')
|
2020-01-26 15:56:19 +01:00
|
|
|
|
2020-09-06 15:58:36 +02:00
|
|
|
CheckDefFailure(['let var: dict<string> = #{key: 123}'], 'expected dict<string> but got dict<number>')
|
|
|
|
CheckDefFailure(['let var: dict<number> = #{key: "xx"}'], 'expected dict<number> but got dict<string>')
|
2020-01-26 15:56:19 +01:00
|
|
|
|
2020-09-06 15:58:36 +02:00
|
|
|
CheckDefFailure(['let var = feedkeys("0")'], 'E1031:')
|
|
|
|
CheckDefFailure(['let var: number = feedkeys("0")'], 'expected number but got void')
|
2020-02-29 23:23:47 +01:00
|
|
|
|
2020-09-06 15:58:36 +02:00
|
|
|
CheckDefFailure(['let var: dict <number>'], 'E1068:')
|
|
|
|
CheckDefFailure(['let var: dict<number'], 'E1009:')
|
2020-04-09 20:10:55 +02:00
|
|
|
|
2020-09-06 15:58:36 +02:00
|
|
|
assert_fails('s/^/\=Mess()/n', 'E794:')
|
|
|
|
CheckDefFailure(['let var: dict<number'], 'E1009:')
|
2020-07-23 21:14:43 +02:00
|
|
|
|
2020-09-06 15:58:36 +02:00
|
|
|
CheckDefFailure(['w:foo: number = 10'],
|
|
|
|
'E488: Trailing characters: : number = 1')
|
|
|
|
CheckDefFailure(['t:foo: bool = true'],
|
|
|
|
'E488: Trailing characters: : bool = true')
|
|
|
|
CheckDefFailure(['b:foo: string = "x"'],
|
|
|
|
'E488: Trailing characters: : string = "x"')
|
|
|
|
CheckDefFailure(['g:foo: number = 123'],
|
|
|
|
'E488: Trailing characters: : number = 123')
|
2020-04-19 16:28:59 +02:00
|
|
|
enddef
|
|
|
|
|
|
|
|
def Test_unlet()
|
|
|
|
g:somevar = 'yes'
|
|
|
|
assert_true(exists('g:somevar'))
|
|
|
|
unlet g:somevar
|
|
|
|
assert_false(exists('g:somevar'))
|
|
|
|
unlet! g:somevar
|
|
|
|
|
2020-08-23 15:21:55 +02:00
|
|
|
# also works for script-local variable in legacy Vim script
|
|
|
|
s:somevar = 'legacy'
|
|
|
|
assert_true(exists('s:somevar'))
|
|
|
|
unlet s:somevar
|
|
|
|
assert_false(exists('s:somevar'))
|
|
|
|
unlet! s:somevar
|
|
|
|
|
2020-09-06 15:58:36 +02:00
|
|
|
CheckScriptFailure([
|
|
|
|
'vim9script',
|
|
|
|
'let svar = 123',
|
|
|
|
'unlet svar',
|
|
|
|
], 'E1081:')
|
|
|
|
CheckScriptFailure([
|
|
|
|
'vim9script',
|
|
|
|
'let svar = 123',
|
|
|
|
'unlet s:svar',
|
|
|
|
], 'E1081:')
|
|
|
|
CheckScriptFailure([
|
|
|
|
'vim9script',
|
|
|
|
'let svar = 123',
|
|
|
|
'def Func()',
|
|
|
|
' unlet svar',
|
|
|
|
'enddef',
|
|
|
|
'defcompile',
|
|
|
|
], 'E1081:')
|
|
|
|
CheckScriptFailure([
|
|
|
|
'vim9script',
|
|
|
|
'let svar = 123',
|
|
|
|
'def Func()',
|
|
|
|
' unlet s:svar',
|
|
|
|
'enddef',
|
|
|
|
'defcompile',
|
|
|
|
], 'E1081:')
|
2020-04-19 18:27:26 +02:00
|
|
|
|
|
|
|
$ENVVAR = 'foobar'
|
|
|
|
assert_equal('foobar', $ENVVAR)
|
|
|
|
unlet $ENVVAR
|
|
|
|
assert_equal('', $ENVVAR)
|
2020-04-19 16:28:59 +02:00
|
|
|
enddef
|
2020-03-28 14:53:20 +01:00
|
|
|
|
2020-04-27 22:47:51 +02:00
|
|
|
def Test_delfunction()
|
2020-07-17 20:36:00 +02:00
|
|
|
# Check function is defined in script namespace
|
2020-04-27 22:47:51 +02:00
|
|
|
CheckScriptSuccess([
|
|
|
|
'vim9script',
|
|
|
|
'func CheckMe()',
|
|
|
|
' return 123',
|
|
|
|
'endfunc',
|
|
|
|
'assert_equal(123, s:CheckMe())',
|
|
|
|
])
|
|
|
|
|
2020-07-17 20:36:00 +02:00
|
|
|
# Check function in script namespace cannot be deleted
|
2020-04-27 22:47:51 +02:00
|
|
|
CheckScriptFailure([
|
|
|
|
'vim9script',
|
|
|
|
'func DeleteMe1()',
|
|
|
|
'endfunc',
|
|
|
|
'delfunction DeleteMe1',
|
|
|
|
], 'E1084:')
|
|
|
|
CheckScriptFailure([
|
|
|
|
'vim9script',
|
|
|
|
'func DeleteMe2()',
|
|
|
|
'endfunc',
|
|
|
|
'def DoThat()',
|
|
|
|
' delfunction DeleteMe2',
|
|
|
|
'enddef',
|
|
|
|
'DoThat()',
|
|
|
|
], 'E1084:')
|
|
|
|
CheckScriptFailure([
|
|
|
|
'vim9script',
|
|
|
|
'def DeleteMe3()',
|
|
|
|
'enddef',
|
|
|
|
'delfunction DeleteMe3',
|
|
|
|
], 'E1084:')
|
|
|
|
CheckScriptFailure([
|
|
|
|
'vim9script',
|
|
|
|
'def DeleteMe4()',
|
|
|
|
'enddef',
|
|
|
|
'def DoThat()',
|
|
|
|
' delfunction DeleteMe4',
|
|
|
|
'enddef',
|
|
|
|
'DoThat()',
|
|
|
|
], 'E1084:')
|
2020-07-25 15:41:11 +02:00
|
|
|
|
|
|
|
# Check that global :def function can be replaced and deleted
|
|
|
|
let lines =<< trim END
|
|
|
|
vim9script
|
|
|
|
def g:Global(): string
|
|
|
|
return "yes"
|
|
|
|
enddef
|
|
|
|
assert_equal("yes", g:Global())
|
|
|
|
def! g:Global(): string
|
|
|
|
return "no"
|
|
|
|
enddef
|
|
|
|
assert_equal("no", g:Global())
|
|
|
|
delfunc g:Global
|
|
|
|
assert_false(exists('*g:Global'))
|
|
|
|
END
|
|
|
|
CheckScriptSuccess(lines)
|
|
|
|
|
|
|
|
# Check that global function can be replaced by a :def function and deleted
|
|
|
|
lines =<< trim END
|
|
|
|
vim9script
|
|
|
|
func g:Global()
|
|
|
|
return "yes"
|
|
|
|
endfunc
|
|
|
|
assert_equal("yes", g:Global())
|
|
|
|
def! g:Global(): string
|
|
|
|
return "no"
|
|
|
|
enddef
|
|
|
|
assert_equal("no", g:Global())
|
|
|
|
delfunc g:Global
|
|
|
|
assert_false(exists('*g:Global'))
|
|
|
|
END
|
|
|
|
CheckScriptSuccess(lines)
|
|
|
|
|
|
|
|
# Check that global :def function can be replaced by a function and deleted
|
|
|
|
lines =<< trim END
|
|
|
|
vim9script
|
|
|
|
def g:Global(): string
|
|
|
|
return "yes"
|
|
|
|
enddef
|
|
|
|
assert_equal("yes", g:Global())
|
|
|
|
func! g:Global()
|
|
|
|
return "no"
|
|
|
|
endfunc
|
|
|
|
assert_equal("no", g:Global())
|
|
|
|
delfunc g:Global
|
|
|
|
assert_false(exists('*g:Global'))
|
|
|
|
END
|
|
|
|
CheckScriptSuccess(lines)
|
2020-04-27 22:47:51 +02:00
|
|
|
enddef
|
|
|
|
|
2020-09-14 17:04:31 +02:00
|
|
|
def Test_wrong_type()
|
|
|
|
CheckDefFailure(['let var: list<nothing>'], 'E1010:')
|
|
|
|
CheckDefFailure(['let var: list<list<nothing>>'], 'E1010:')
|
|
|
|
CheckDefFailure(['let var: dict<nothing>'], 'E1010:')
|
|
|
|
CheckDefFailure(['let var: dict<dict<nothing>>'], 'E1010:')
|
2020-01-26 15:56:19 +01:00
|
|
|
|
2020-09-14 17:04:31 +02:00
|
|
|
CheckDefFailure(['let var: dict<number'], 'E1009:')
|
|
|
|
CheckDefFailure(['let var: dict<list<number>'], 'E1009:')
|
|
|
|
|
|
|
|
CheckDefFailure(['let var: ally'], 'E1010:')
|
|
|
|
CheckDefFailure(['let var: bram'], 'E1010:')
|
|
|
|
CheckDefFailure(['let var: cathy'], 'E1010:')
|
|
|
|
CheckDefFailure(['let var: dom'], 'E1010:')
|
|
|
|
CheckDefFailure(['let var: freddy'], 'E1010:')
|
|
|
|
CheckDefFailure(['let var: john'], 'E1010:')
|
|
|
|
CheckDefFailure(['let var: larry'], 'E1010:')
|
|
|
|
CheckDefFailure(['let var: ned'], 'E1010:')
|
|
|
|
CheckDefFailure(['let var: pam'], 'E1010:')
|
|
|
|
CheckDefFailure(['let var: sam'], 'E1010:')
|
|
|
|
CheckDefFailure(['let var: vim'], 'E1010:')
|
|
|
|
|
|
|
|
CheckDefFailure(['let Ref: number', 'Ref()'], 'E1085:')
|
|
|
|
CheckDefFailure(['let Ref: string', 'let res = Ref()'], 'E1085:')
|
|
|
|
enddef
|
|
|
|
|
|
|
|
def Test_const()
|
|
|
|
CheckDefFailure(['const var = 234', 'var = 99'], 'E1018:')
|
|
|
|
CheckDefFailure(['const one = 234', 'let one = 99'], 'E1017:')
|
2020-09-14 18:15:09 +02:00
|
|
|
CheckDefFailure(['const list = [1, 2]', 'let list = [3, 4]'], 'E1017:')
|
2020-09-14 17:04:31 +02:00
|
|
|
CheckDefFailure(['const two'], 'E1021:')
|
|
|
|
CheckDefFailure(['const &option'], 'E996:')
|
2020-09-14 18:15:09 +02:00
|
|
|
|
|
|
|
let lines =<< trim END
|
|
|
|
const list = [1, 2, 3]
|
|
|
|
list[0] = 4
|
2020-09-14 21:39:44 +02:00
|
|
|
list->assert_equal([4, 2, 3])
|
|
|
|
const! other = [5, 6, 7]
|
|
|
|
other->assert_equal([5, 6, 7])
|
2020-09-14 22:28:30 +02:00
|
|
|
|
|
|
|
let varlist = [7, 8]
|
|
|
|
const! constlist = [1, varlist, 3]
|
|
|
|
varlist[0] = 77
|
|
|
|
# TODO: does not work yet
|
|
|
|
# constlist[1][1] = 88
|
|
|
|
let cl = constlist[1]
|
|
|
|
cl[1] = 88
|
|
|
|
constlist->assert_equal([1, [77, 88], 3])
|
|
|
|
|
|
|
|
let vardict = #{five: 5, six: 6}
|
|
|
|
const! constdict = #{one: 1, two: vardict, three: 3}
|
|
|
|
vardict['five'] = 55
|
|
|
|
# TODO: does not work yet
|
|
|
|
# constdict['two']['six'] = 66
|
|
|
|
let cd = constdict['two']
|
|
|
|
cd['six'] = 66
|
|
|
|
constdict->assert_equal(#{one: 1, two: #{five: 55, six: 66}, three: 3})
|
2020-09-14 18:15:09 +02:00
|
|
|
END
|
|
|
|
CheckDefAndScriptSuccess(lines)
|
2020-09-14 17:04:31 +02:00
|
|
|
enddef
|
2020-01-26 15:56:19 +01:00
|
|
|
|
2020-09-14 21:39:44 +02:00
|
|
|
def Test_const_bang()
|
|
|
|
let lines =<< trim END
|
|
|
|
const! var = 234
|
|
|
|
var = 99
|
|
|
|
END
|
|
|
|
CheckDefExecFailure(lines, 'E1018:', 2)
|
|
|
|
CheckScriptFailure(['vim9script'] + lines, 'E46:', 3)
|
|
|
|
|
|
|
|
lines =<< trim END
|
|
|
|
const! ll = [2, 3, 4]
|
|
|
|
ll[0] = 99
|
|
|
|
END
|
|
|
|
CheckDefExecFailure(lines, 'E1119:', 2)
|
|
|
|
CheckScriptFailure(['vim9script'] + lines, 'E741:', 3)
|
|
|
|
|
|
|
|
lines =<< trim END
|
|
|
|
const! ll = [2, 3, 4]
|
|
|
|
ll[3] = 99
|
|
|
|
END
|
|
|
|
CheckDefExecFailure(lines, 'E1118:', 2)
|
|
|
|
CheckScriptFailure(['vim9script'] + lines, 'E684:', 3)
|
|
|
|
|
|
|
|
lines =<< trim END
|
|
|
|
const! dd = #{one: 1, two: 2}
|
|
|
|
dd["one"] = 99
|
|
|
|
END
|
|
|
|
CheckDefExecFailure(lines, 'E1121:', 2)
|
|
|
|
CheckScriptFailure(['vim9script'] + lines, 'E741:', 3)
|
|
|
|
|
|
|
|
lines =<< trim END
|
|
|
|
const! dd = #{one: 1, two: 2}
|
|
|
|
dd["three"] = 99
|
|
|
|
END
|
|
|
|
CheckDefExecFailure(lines, 'E1120:')
|
|
|
|
CheckScriptFailure(['vim9script'] + lines, 'E741:', 3)
|
|
|
|
enddef
|
|
|
|
|
2020-06-22 23:02:51 +02:00
|
|
|
def Test_range_no_colon()
|
2020-09-06 15:58:36 +02:00
|
|
|
CheckDefFailure(['%s/a/b/'], 'E1050:')
|
|
|
|
CheckDefFailure(['+ s/a/b/'], 'E1050:')
|
|
|
|
CheckDefFailure(['- s/a/b/'], 'E1050:')
|
|
|
|
CheckDefFailure(['. s/a/b/'], 'E1050:')
|
2020-06-22 23:02:51 +02:00
|
|
|
enddef
|
|
|
|
|
|
|
|
|
2020-01-26 15:56:19 +01:00
|
|
|
def Test_block()
|
|
|
|
let outer = 1
|
|
|
|
{
|
|
|
|
let inner = 2
|
|
|
|
assert_equal(1, outer)
|
|
|
|
assert_equal(2, inner)
|
|
|
|
}
|
|
|
|
assert_equal(1, outer)
|
|
|
|
enddef
|
|
|
|
|
2020-09-14 17:04:31 +02:00
|
|
|
def Test_block_failure()
|
|
|
|
CheckDefFailure(['{', 'let inner = 1', '}', 'echo inner'], 'E1001:')
|
|
|
|
CheckDefFailure(['}'], 'E1025:')
|
|
|
|
CheckDefFailure(['{', 'echo 1'], 'E1026:')
|
|
|
|
enddef
|
2020-01-26 15:56:19 +01:00
|
|
|
|
2020-07-18 18:13:02 +02:00
|
|
|
func g:NoSuchFunc()
|
|
|
|
echo 'none'
|
|
|
|
endfunc
|
|
|
|
|
2020-01-26 15:56:19 +01:00
|
|
|
def Test_try_catch()
|
|
|
|
let l = []
|
2020-04-16 22:10:49 +02:00
|
|
|
try # comment
|
2020-01-26 15:56:19 +01:00
|
|
|
add(l, '1')
|
|
|
|
throw 'wrong'
|
|
|
|
add(l, '2')
|
2020-04-16 22:10:49 +02:00
|
|
|
catch # comment
|
2020-01-26 15:56:19 +01:00
|
|
|
add(l, v:exception)
|
2020-04-16 22:10:49 +02:00
|
|
|
finally # comment
|
2020-01-26 15:56:19 +01:00
|
|
|
add(l, '3')
|
2020-04-16 22:10:49 +02:00
|
|
|
endtry # comment
|
2020-01-26 15:56:19 +01:00
|
|
|
assert_equal(['1', 'wrong', '3'], l)
|
2020-07-17 22:06:44 +02:00
|
|
|
|
2020-07-18 15:17:02 +02:00
|
|
|
l = []
|
|
|
|
try
|
|
|
|
try
|
|
|
|
add(l, '1')
|
|
|
|
throw 'wrong'
|
|
|
|
add(l, '2')
|
|
|
|
catch /right/
|
|
|
|
add(l, v:exception)
|
|
|
|
endtry
|
|
|
|
catch /wrong/
|
|
|
|
add(l, 'caught')
|
|
|
|
finally
|
|
|
|
add(l, 'finally')
|
|
|
|
endtry
|
|
|
|
assert_equal(['1', 'caught', 'finally'], l)
|
|
|
|
|
2020-07-17 22:06:44 +02:00
|
|
|
let n: number
|
|
|
|
try
|
|
|
|
n = l[3]
|
|
|
|
catch /E684:/
|
|
|
|
n = 99
|
|
|
|
endtry
|
|
|
|
assert_equal(99, n)
|
|
|
|
|
|
|
|
try
|
2020-08-16 17:33:35 +02:00
|
|
|
# string slice returns a string, not a number
|
2020-07-17 22:06:44 +02:00
|
|
|
n = g:astring[3]
|
2020-09-16 15:22:00 +02:00
|
|
|
catch /E1012:/
|
2020-07-17 22:06:44 +02:00
|
|
|
n = 77
|
|
|
|
endtry
|
|
|
|
assert_equal(77, n)
|
|
|
|
|
|
|
|
try
|
|
|
|
n = l[g:astring]
|
2020-09-16 15:22:00 +02:00
|
|
|
catch /E1012:/
|
2020-08-16 14:48:19 +02:00
|
|
|
n = 88
|
2020-07-17 22:06:44 +02:00
|
|
|
endtry
|
2020-08-16 14:48:19 +02:00
|
|
|
assert_equal(88, n)
|
2020-07-17 22:06:44 +02:00
|
|
|
|
|
|
|
try
|
|
|
|
n = s:does_not_exist
|
2020-07-17 23:03:17 +02:00
|
|
|
catch /E121:/
|
|
|
|
n = 111
|
|
|
|
endtry
|
|
|
|
assert_equal(111, n)
|
|
|
|
|
|
|
|
try
|
|
|
|
n = g:does_not_exist
|
2020-07-17 22:06:44 +02:00
|
|
|
catch /E121:/
|
|
|
|
n = 121
|
|
|
|
endtry
|
|
|
|
assert_equal(121, n)
|
|
|
|
|
|
|
|
let d = #{one: 1}
|
|
|
|
try
|
|
|
|
n = d[g:astring]
|
|
|
|
catch /E716:/
|
|
|
|
n = 222
|
|
|
|
endtry
|
|
|
|
assert_equal(222, n)
|
2020-07-17 23:03:17 +02:00
|
|
|
|
|
|
|
try
|
|
|
|
n = -g:astring
|
|
|
|
catch /E39:/
|
|
|
|
n = 233
|
|
|
|
endtry
|
|
|
|
assert_equal(233, n)
|
|
|
|
|
|
|
|
try
|
|
|
|
n = +g:astring
|
|
|
|
catch /E1030:/
|
|
|
|
n = 244
|
|
|
|
endtry
|
|
|
|
assert_equal(244, n)
|
|
|
|
|
|
|
|
try
|
|
|
|
n = +g:alist
|
|
|
|
catch /E745:/
|
|
|
|
n = 255
|
|
|
|
endtry
|
|
|
|
assert_equal(255, n)
|
|
|
|
|
|
|
|
let nd: dict<any>
|
|
|
|
try
|
|
|
|
nd = {g:anumber: 1}
|
2020-09-16 15:22:00 +02:00
|
|
|
catch /E1012:/
|
2020-07-17 23:03:17 +02:00
|
|
|
n = 266
|
|
|
|
endtry
|
|
|
|
assert_equal(266, n)
|
|
|
|
|
|
|
|
try
|
|
|
|
[n] = [1, 2, 3]
|
|
|
|
catch /E1093:/
|
|
|
|
n = 277
|
|
|
|
endtry
|
|
|
|
assert_equal(277, n)
|
|
|
|
|
2020-07-18 15:17:02 +02:00
|
|
|
try
|
|
|
|
&ts = g:astring
|
2020-09-16 15:22:00 +02:00
|
|
|
catch /E1012:/
|
2020-07-18 15:17:02 +02:00
|
|
|
n = 288
|
|
|
|
endtry
|
|
|
|
assert_equal(288, n)
|
|
|
|
|
|
|
|
try
|
|
|
|
&backspace = 'asdf'
|
|
|
|
catch /E474:/
|
|
|
|
n = 299
|
|
|
|
endtry
|
|
|
|
assert_equal(299, n)
|
|
|
|
|
|
|
|
l = [1]
|
|
|
|
try
|
|
|
|
l[3] = 3
|
|
|
|
catch /E684:/
|
|
|
|
n = 300
|
|
|
|
endtry
|
|
|
|
assert_equal(300, n)
|
|
|
|
|
|
|
|
try
|
|
|
|
unlet g:does_not_exist
|
|
|
|
catch /E108:/
|
|
|
|
n = 322
|
|
|
|
endtry
|
|
|
|
assert_equal(322, n)
|
|
|
|
|
|
|
|
try
|
|
|
|
d = {'text': 1, g:astring: 2}
|
|
|
|
catch /E721:/
|
|
|
|
n = 333
|
|
|
|
endtry
|
|
|
|
assert_equal(333, n)
|
|
|
|
|
|
|
|
try
|
|
|
|
l = DeletedFunc()
|
|
|
|
catch /E933:/
|
|
|
|
n = 344
|
|
|
|
endtry
|
|
|
|
assert_equal(344, n)
|
2020-07-18 18:13:02 +02:00
|
|
|
|
|
|
|
try
|
|
|
|
echo len(v:true)
|
|
|
|
catch /E701:/
|
|
|
|
n = 355
|
|
|
|
endtry
|
|
|
|
assert_equal(355, n)
|
|
|
|
|
|
|
|
let P = function('g:NoSuchFunc')
|
|
|
|
delfunc g:NoSuchFunc
|
|
|
|
try
|
|
|
|
echo P()
|
|
|
|
catch /E117:/
|
|
|
|
n = 366
|
|
|
|
endtry
|
|
|
|
assert_equal(366, n)
|
|
|
|
|
|
|
|
try
|
|
|
|
echo g:NoSuchFunc()
|
|
|
|
catch /E117:/
|
|
|
|
n = 377
|
|
|
|
endtry
|
|
|
|
assert_equal(377, n)
|
|
|
|
|
|
|
|
try
|
|
|
|
echo g:alist + 4
|
|
|
|
catch /E745:/
|
|
|
|
n = 388
|
|
|
|
endtry
|
|
|
|
assert_equal(388, n)
|
|
|
|
|
|
|
|
try
|
|
|
|
echo 4 + g:alist
|
|
|
|
catch /E745:/
|
|
|
|
n = 399
|
|
|
|
endtry
|
|
|
|
assert_equal(399, n)
|
|
|
|
|
|
|
|
try
|
|
|
|
echo g:alist.member
|
|
|
|
catch /E715:/
|
|
|
|
n = 400
|
|
|
|
endtry
|
|
|
|
assert_equal(400, n)
|
|
|
|
|
|
|
|
try
|
|
|
|
echo d.member
|
|
|
|
catch /E716:/
|
|
|
|
n = 411
|
|
|
|
endtry
|
|
|
|
assert_equal(411, n)
|
2020-07-18 15:17:02 +02:00
|
|
|
enddef
|
|
|
|
|
|
|
|
def DeletedFunc(): list<any>
|
|
|
|
return ['delete me']
|
2020-01-26 15:56:19 +01:00
|
|
|
enddef
|
2020-07-18 15:17:02 +02:00
|
|
|
defcompile
|
|
|
|
delfunc DeletedFunc
|
2020-01-26 15:56:19 +01:00
|
|
|
|
2020-02-19 17:06:11 +01:00
|
|
|
def ThrowFromDef()
|
2020-04-23 17:07:30 +02:00
|
|
|
throw "getout" # comment
|
2020-02-19 17:06:11 +01:00
|
|
|
enddef
|
|
|
|
|
|
|
|
func CatchInFunc()
|
|
|
|
try
|
|
|
|
call ThrowFromDef()
|
|
|
|
catch
|
|
|
|
let g:thrown_func = v:exception
|
|
|
|
endtry
|
|
|
|
endfunc
|
|
|
|
|
|
|
|
def CatchInDef()
|
|
|
|
try
|
|
|
|
ThrowFromDef()
|
|
|
|
catch
|
|
|
|
g:thrown_def = v:exception
|
|
|
|
endtry
|
|
|
|
enddef
|
|
|
|
|
2020-02-20 20:41:06 +01:00
|
|
|
def ReturnFinally(): string
|
|
|
|
try
|
|
|
|
return 'intry'
|
|
|
|
finally
|
|
|
|
g:in_finally = 'finally'
|
|
|
|
endtry
|
|
|
|
return 'end'
|
|
|
|
enddef
|
|
|
|
|
2020-02-19 17:06:11 +01:00
|
|
|
def Test_try_catch_nested()
|
|
|
|
CatchInFunc()
|
|
|
|
assert_equal('getout', g:thrown_func)
|
|
|
|
|
|
|
|
CatchInDef()
|
|
|
|
assert_equal('getout', g:thrown_def)
|
2020-02-20 20:41:06 +01:00
|
|
|
|
|
|
|
assert_equal('intry', ReturnFinally())
|
|
|
|
assert_equal('finally', g:in_finally)
|
|
|
|
enddef
|
|
|
|
|
2020-09-16 22:29:52 +02:00
|
|
|
def TryOne(): number
|
|
|
|
try
|
|
|
|
return 0
|
|
|
|
catch
|
|
|
|
endtry
|
|
|
|
return 0
|
|
|
|
enddef
|
|
|
|
|
|
|
|
def TryTwo(n: number): string
|
|
|
|
try
|
|
|
|
let x = {}
|
|
|
|
catch
|
|
|
|
endtry
|
|
|
|
return 'text'
|
|
|
|
enddef
|
|
|
|
|
|
|
|
def Test_try_catch_twice()
|
|
|
|
assert_equal('text', TryOne()->TryTwo())
|
|
|
|
enddef
|
|
|
|
|
2020-02-20 20:41:06 +01:00
|
|
|
def Test_try_catch_match()
|
|
|
|
let seq = 'a'
|
|
|
|
try
|
|
|
|
throw 'something'
|
|
|
|
catch /nothing/
|
|
|
|
seq ..= 'x'
|
|
|
|
catch /some/
|
|
|
|
seq ..= 'b'
|
|
|
|
catch /asdf/
|
|
|
|
seq ..= 'x'
|
2020-04-02 21:13:25 +02:00
|
|
|
catch ?a\?sdf?
|
|
|
|
seq ..= 'y'
|
2020-02-20 20:41:06 +01:00
|
|
|
finally
|
|
|
|
seq ..= 'c'
|
|
|
|
endtry
|
|
|
|
assert_equal('abc', seq)
|
2020-02-19 17:06:11 +01:00
|
|
|
enddef
|
|
|
|
|
2020-04-02 21:13:25 +02:00
|
|
|
def Test_try_catch_fails()
|
2020-09-06 15:58:36 +02:00
|
|
|
CheckDefFailure(['catch'], 'E603:')
|
|
|
|
CheckDefFailure(['try', 'echo 0', 'catch', 'catch'], 'E1033:')
|
|
|
|
CheckDefFailure(['try', 'echo 0', 'catch /pat'], 'E1067:')
|
|
|
|
CheckDefFailure(['finally'], 'E606:')
|
|
|
|
CheckDefFailure(['try', 'echo 0', 'finally', 'echo 1', 'finally'], 'E607:')
|
|
|
|
CheckDefFailure(['endtry'], 'E602:')
|
|
|
|
CheckDefFailure(['while 1', 'endtry'], 'E170:')
|
|
|
|
CheckDefFailure(['for i in range(5)', 'endtry'], 'E170:')
|
|
|
|
CheckDefFailure(['if 2', 'endtry'], 'E171:')
|
|
|
|
CheckDefFailure(['try', 'echo 1', 'endtry'], 'E1032:')
|
2020-04-02 22:33:21 +02:00
|
|
|
|
2020-09-06 15:58:36 +02:00
|
|
|
CheckDefFailure(['throw'], 'E1015:')
|
|
|
|
CheckDefFailure(['throw xxx'], 'E1001:')
|
2020-04-02 21:13:25 +02:00
|
|
|
enddef
|
|
|
|
|
2020-06-30 20:55:15 +02:00
|
|
|
def Test_throw_vimscript()
|
2020-07-17 20:36:00 +02:00
|
|
|
# only checks line continuation
|
2020-06-30 20:55:15 +02:00
|
|
|
let lines =<< trim END
|
|
|
|
vim9script
|
|
|
|
try
|
|
|
|
throw 'one'
|
|
|
|
.. 'two'
|
|
|
|
catch
|
|
|
|
assert_equal('onetwo', v:exception)
|
|
|
|
endtry
|
|
|
|
END
|
|
|
|
CheckScriptSuccess(lines)
|
|
|
|
enddef
|
|
|
|
|
2020-08-12 16:38:10 +02:00
|
|
|
def Test_error_in_nested_function()
|
|
|
|
# an error in a nested :function aborts executin in the calling :def function
|
|
|
|
let lines =<< trim END
|
|
|
|
vim9script
|
|
|
|
def Func()
|
|
|
|
Error()
|
|
|
|
g:test_var = 1
|
|
|
|
enddef
|
|
|
|
func Error() abort
|
|
|
|
eval [][0]
|
|
|
|
endfunc
|
|
|
|
Func()
|
|
|
|
END
|
|
|
|
g:test_var = 0
|
|
|
|
CheckScriptFailure(lines, 'E684:')
|
|
|
|
assert_equal(0, g:test_var)
|
|
|
|
enddef
|
|
|
|
|
2020-06-30 21:18:36 +02:00
|
|
|
def Test_cexpr_vimscript()
|
2020-07-17 20:36:00 +02:00
|
|
|
# only checks line continuation
|
2020-06-30 21:18:36 +02:00
|
|
|
set errorformat=File\ %f\ line\ %l
|
|
|
|
let lines =<< trim END
|
|
|
|
vim9script
|
|
|
|
cexpr 'File'
|
|
|
|
.. ' someFile' ..
|
|
|
|
' line 19'
|
|
|
|
assert_equal(19, getqflist()[0].lnum)
|
|
|
|
END
|
|
|
|
CheckScriptSuccess(lines)
|
|
|
|
set errorformat&
|
|
|
|
enddef
|
|
|
|
|
2020-08-12 22:18:23 +02:00
|
|
|
def Test_statusline_syntax()
|
|
|
|
# legacy syntax is used for 'statusline'
|
|
|
|
let lines =<< trim END
|
|
|
|
vim9script
|
|
|
|
func g:Status()
|
|
|
|
return '%{"x" is# "x"}'
|
|
|
|
endfunc
|
|
|
|
set laststatus=2 statusline=%!Status()
|
|
|
|
redrawstatus
|
|
|
|
set laststatus statusline=
|
|
|
|
END
|
|
|
|
CheckScriptSuccess(lines)
|
|
|
|
enddef
|
|
|
|
|
2020-07-19 17:17:02 +02:00
|
|
|
def Test_list_vimscript()
|
|
|
|
# checks line continuation and comments
|
|
|
|
let lines =<< trim END
|
|
|
|
vim9script
|
|
|
|
let mylist = [
|
|
|
|
'one',
|
|
|
|
# comment
|
|
|
|
'two', # empty line follows
|
|
|
|
|
|
|
|
'three',
|
|
|
|
]
|
|
|
|
assert_equal(['one', 'two', 'three'], mylist)
|
|
|
|
END
|
|
|
|
CheckScriptSuccess(lines)
|
2020-08-20 15:02:42 +02:00
|
|
|
|
|
|
|
# check all lines from heredoc are kept
|
|
|
|
lines =<< trim END
|
|
|
|
# comment 1
|
|
|
|
two
|
|
|
|
# comment 3
|
|
|
|
|
|
|
|
five
|
|
|
|
# comment 6
|
|
|
|
END
|
|
|
|
assert_equal(['# comment 1', 'two', '# comment 3', '', 'five', '# comment 6'], lines)
|
2020-07-19 17:17:02 +02:00
|
|
|
enddef
|
|
|
|
|
2020-05-05 23:32:58 +02:00
|
|
|
if has('channel')
|
|
|
|
let someJob = test_null_job()
|
2020-05-05 22:08:26 +02:00
|
|
|
|
2020-05-05 23:32:58 +02:00
|
|
|
def FuncWithError()
|
|
|
|
echomsg g:someJob
|
|
|
|
enddef
|
2020-05-05 22:08:26 +02:00
|
|
|
|
2020-05-05 23:32:58 +02:00
|
|
|
func Test_convert_emsg_to_exception()
|
|
|
|
try
|
|
|
|
call FuncWithError()
|
|
|
|
catch
|
|
|
|
call assert_match('Vim:E908:', v:exception)
|
|
|
|
endtry
|
|
|
|
endfunc
|
|
|
|
endif
|
2020-05-05 22:08:26 +02:00
|
|
|
|
2020-01-26 15:56:19 +01:00
|
|
|
let s:export_script_lines =<< trim END
|
|
|
|
vim9script
|
|
|
|
let name: string = 'bob'
|
|
|
|
def Concat(arg: string): string
|
|
|
|
return name .. arg
|
|
|
|
enddef
|
2020-05-15 18:17:28 +02:00
|
|
|
g:result = Concat('bie')
|
|
|
|
g:localname = name
|
2020-01-26 15:56:19 +01:00
|
|
|
|
|
|
|
export const CONST = 1234
|
|
|
|
export let exported = 9876
|
2020-02-06 13:15:52 +01:00
|
|
|
export let exp_name = 'John'
|
2020-01-26 15:56:19 +01:00
|
|
|
export def Exported(): string
|
|
|
|
return 'Exported'
|
|
|
|
enddef
|
|
|
|
END
|
|
|
|
|
2020-08-09 14:43:58 +02:00
|
|
|
def Undo_export_script_lines()
|
|
|
|
unlet g:result
|
|
|
|
unlet g:localname
|
|
|
|
enddef
|
|
|
|
|
2020-03-09 19:25:27 +01:00
|
|
|
def Test_vim9_import_export()
|
2020-01-26 15:56:19 +01:00
|
|
|
let import_script_lines =<< trim END
|
|
|
|
vim9script
|
|
|
|
import {exported, Exported} from './Xexport.vim'
|
|
|
|
g:imported = exported
|
2020-02-06 13:15:52 +01:00
|
|
|
exported += 3
|
|
|
|
g:imported_added = exported
|
2020-01-26 15:56:19 +01:00
|
|
|
g:imported_func = Exported()
|
2020-02-06 13:15:52 +01:00
|
|
|
|
2020-07-23 22:41:43 +02:00
|
|
|
def GetExported(): string
|
|
|
|
let local_dict = #{ref: Exported}
|
|
|
|
return local_dict.ref()
|
|
|
|
enddef
|
|
|
|
g:funcref_result = GetExported()
|
|
|
|
|
2020-02-06 13:15:52 +01:00
|
|
|
import {exp_name} from './Xexport.vim'
|
|
|
|
g:imported_name = exp_name
|
|
|
|
exp_name ..= ' Doe'
|
|
|
|
g:imported_name_appended = exp_name
|
2020-03-02 22:53:32 +01:00
|
|
|
g:imported_later = exported
|
2020-01-26 15:56:19 +01:00
|
|
|
END
|
|
|
|
|
|
|
|
writefile(import_script_lines, 'Ximport.vim')
|
|
|
|
writefile(s:export_script_lines, 'Xexport.vim')
|
|
|
|
|
|
|
|
source Ximport.vim
|
|
|
|
|
|
|
|
assert_equal('bobbie', g:result)
|
|
|
|
assert_equal('bob', g:localname)
|
|
|
|
assert_equal(9876, g:imported)
|
2020-02-06 13:15:52 +01:00
|
|
|
assert_equal(9879, g:imported_added)
|
2020-03-02 22:53:32 +01:00
|
|
|
assert_equal(9879, g:imported_later)
|
2020-01-26 15:56:19 +01:00
|
|
|
assert_equal('Exported', g:imported_func)
|
2020-07-23 22:41:43 +02:00
|
|
|
assert_equal('Exported', g:funcref_result)
|
2020-02-06 13:15:52 +01:00
|
|
|
assert_equal('John', g:imported_name)
|
|
|
|
assert_equal('John Doe', g:imported_name_appended)
|
2020-01-26 15:56:19 +01:00
|
|
|
assert_false(exists('g:name'))
|
|
|
|
|
2020-08-09 14:43:58 +02:00
|
|
|
Undo_export_script_lines()
|
2020-01-26 15:56:19 +01:00
|
|
|
unlet g:imported
|
2020-02-06 13:15:52 +01:00
|
|
|
unlet g:imported_added
|
2020-03-02 22:53:32 +01:00
|
|
|
unlet g:imported_later
|
2020-01-26 15:56:19 +01:00
|
|
|
unlet g:imported_func
|
2020-02-06 13:15:52 +01:00
|
|
|
unlet g:imported_name g:imported_name_appended
|
2020-02-23 21:25:54 +01:00
|
|
|
delete('Ximport.vim')
|
|
|
|
|
2020-07-04 13:15:31 +02:00
|
|
|
# similar, with line breaks
|
|
|
|
let import_line_break_script_lines =<< trim END
|
|
|
|
vim9script
|
|
|
|
import {
|
|
|
|
exported,
|
|
|
|
Exported,
|
|
|
|
}
|
|
|
|
from
|
|
|
|
'./Xexport.vim'
|
|
|
|
g:imported = exported
|
|
|
|
exported += 5
|
|
|
|
g:imported_added = exported
|
|
|
|
g:imported_func = Exported()
|
|
|
|
END
|
|
|
|
writefile(import_line_break_script_lines, 'Ximport_lbr.vim')
|
|
|
|
source Ximport_lbr.vim
|
|
|
|
|
|
|
|
assert_equal(9876, g:imported)
|
|
|
|
assert_equal(9881, g:imported_added)
|
|
|
|
assert_equal('Exported', g:imported_func)
|
|
|
|
|
|
|
|
# exported script not sourced again
|
|
|
|
assert_false(exists('g:result'))
|
|
|
|
unlet g:imported
|
|
|
|
unlet g:imported_added
|
|
|
|
unlet g:imported_func
|
|
|
|
delete('Ximport_lbr.vim')
|
|
|
|
|
|
|
|
# import inside :def function
|
2020-03-02 22:53:32 +01:00
|
|
|
let import_in_def_lines =<< trim END
|
|
|
|
vim9script
|
|
|
|
def ImportInDef()
|
|
|
|
import exported from './Xexport.vim'
|
|
|
|
g:imported = exported
|
|
|
|
exported += 7
|
|
|
|
g:imported_added = exported
|
|
|
|
enddef
|
|
|
|
ImportInDef()
|
|
|
|
END
|
|
|
|
writefile(import_in_def_lines, 'Ximport2.vim')
|
|
|
|
source Ximport2.vim
|
2020-07-17 20:36:00 +02:00
|
|
|
# TODO: this should be 9879
|
2020-03-02 22:53:32 +01:00
|
|
|
assert_equal(9876, g:imported)
|
|
|
|
assert_equal(9883, g:imported_added)
|
|
|
|
unlet g:imported
|
|
|
|
unlet g:imported_added
|
|
|
|
delete('Ximport2.vim')
|
|
|
|
|
2020-02-23 21:25:54 +01:00
|
|
|
let import_star_as_lines =<< trim END
|
|
|
|
vim9script
|
|
|
|
import * as Export from './Xexport.vim'
|
|
|
|
def UseExport()
|
|
|
|
g:imported = Export.exported
|
|
|
|
enddef
|
|
|
|
UseExport()
|
|
|
|
END
|
|
|
|
writefile(import_star_as_lines, 'Ximport.vim')
|
|
|
|
source Ximport.vim
|
2020-03-02 22:53:32 +01:00
|
|
|
assert_equal(9883, g:imported)
|
2020-02-23 21:25:54 +01:00
|
|
|
|
2020-03-28 14:53:20 +01:00
|
|
|
let import_star_as_lines_no_dot =<< trim END
|
|
|
|
vim9script
|
|
|
|
import * as Export from './Xexport.vim'
|
|
|
|
def Func()
|
|
|
|
let dummy = 1
|
|
|
|
let imported = Export + dummy
|
|
|
|
enddef
|
2020-05-24 23:00:18 +02:00
|
|
|
defcompile
|
2020-03-28 14:53:20 +01:00
|
|
|
END
|
|
|
|
writefile(import_star_as_lines_no_dot, 'Ximport.vim')
|
2020-09-06 22:26:57 +02:00
|
|
|
assert_fails('source Ximport.vim', 'E1060:', '', 2, 'Func')
|
2020-03-28 14:53:20 +01:00
|
|
|
|
|
|
|
let import_star_as_lines_dot_space =<< trim END
|
|
|
|
vim9script
|
|
|
|
import * as Export from './Xexport.vim'
|
|
|
|
def Func()
|
|
|
|
let imported = Export . exported
|
|
|
|
enddef
|
2020-05-24 23:00:18 +02:00
|
|
|
defcompile
|
2020-03-28 14:53:20 +01:00
|
|
|
END
|
|
|
|
writefile(import_star_as_lines_dot_space, 'Ximport.vim')
|
2020-09-06 22:26:57 +02:00
|
|
|
assert_fails('source Ximport.vim', 'E1074:', '', 1, 'Func')
|
2020-03-28 14:53:20 +01:00
|
|
|
|
|
|
|
let import_star_as_lines_missing_name =<< trim END
|
|
|
|
vim9script
|
|
|
|
import * as Export from './Xexport.vim'
|
|
|
|
def Func()
|
|
|
|
let imported = Export.
|
|
|
|
enddef
|
2020-05-24 23:00:18 +02:00
|
|
|
defcompile
|
2020-03-28 14:53:20 +01:00
|
|
|
END
|
|
|
|
writefile(import_star_as_lines_missing_name, 'Ximport.vim')
|
2020-09-06 22:26:57 +02:00
|
|
|
assert_fails('source Ximport.vim', 'E1048:', '', 1, 'Func')
|
2020-03-28 14:53:20 +01:00
|
|
|
|
2020-07-04 13:15:31 +02:00
|
|
|
let import_star_as_lbr_lines =<< trim END
|
|
|
|
vim9script
|
|
|
|
import *
|
|
|
|
as Export
|
|
|
|
from
|
|
|
|
'./Xexport.vim'
|
|
|
|
def UseExport()
|
|
|
|
g:imported = Export.exported
|
|
|
|
enddef
|
|
|
|
UseExport()
|
|
|
|
END
|
|
|
|
writefile(import_star_as_lbr_lines, 'Ximport.vim')
|
|
|
|
source Ximport.vim
|
|
|
|
assert_equal(9883, g:imported)
|
|
|
|
|
2020-02-23 21:25:54 +01:00
|
|
|
let import_star_lines =<< trim END
|
|
|
|
vim9script
|
|
|
|
import * from './Xexport.vim'
|
|
|
|
END
|
|
|
|
writefile(import_star_lines, 'Ximport.vim')
|
2020-09-06 22:26:57 +02:00
|
|
|
assert_fails('source Ximport.vim', 'E1045:', '', 2, 'Ximport.vim')
|
2020-02-23 21:25:54 +01:00
|
|
|
|
2020-07-17 20:36:00 +02:00
|
|
|
# try to import something that exists but is not exported
|
2020-02-23 22:35:05 +01:00
|
|
|
let import_not_exported_lines =<< trim END
|
|
|
|
vim9script
|
|
|
|
import name from './Xexport.vim'
|
|
|
|
END
|
|
|
|
writefile(import_not_exported_lines, 'Ximport.vim')
|
2020-09-06 22:26:57 +02:00
|
|
|
assert_fails('source Ximport.vim', 'E1049:', '', 2, 'Ximport.vim')
|
2020-02-23 22:35:05 +01:00
|
|
|
|
2020-07-17 20:36:00 +02:00
|
|
|
# try to import something that is already defined
|
2020-03-09 19:25:27 +01:00
|
|
|
let import_already_defined =<< trim END
|
|
|
|
vim9script
|
|
|
|
let exported = 'something'
|
|
|
|
import exported from './Xexport.vim'
|
|
|
|
END
|
|
|
|
writefile(import_already_defined, 'Ximport.vim')
|
2020-09-06 22:26:57 +02:00
|
|
|
assert_fails('source Ximport.vim', 'E1073:', '', 3, 'Ximport.vim')
|
2020-03-09 19:25:27 +01:00
|
|
|
|
2020-07-17 20:36:00 +02:00
|
|
|
# try to import something that is already defined
|
2020-03-09 19:25:27 +01:00
|
|
|
import_already_defined =<< trim END
|
|
|
|
vim9script
|
|
|
|
let exported = 'something'
|
|
|
|
import * as exported from './Xexport.vim'
|
|
|
|
END
|
|
|
|
writefile(import_already_defined, 'Ximport.vim')
|
2020-09-06 22:26:57 +02:00
|
|
|
assert_fails('source Ximport.vim', 'E1073:', '', 3, 'Ximport.vim')
|
2020-03-09 19:25:27 +01:00
|
|
|
|
2020-07-17 20:36:00 +02:00
|
|
|
# try to import something that is already defined
|
2020-03-09 19:25:27 +01:00
|
|
|
import_already_defined =<< trim END
|
|
|
|
vim9script
|
|
|
|
let exported = 'something'
|
|
|
|
import {exported} from './Xexport.vim'
|
|
|
|
END
|
|
|
|
writefile(import_already_defined, 'Ximport.vim')
|
2020-09-06 22:26:57 +02:00
|
|
|
assert_fails('source Ximport.vim', 'E1073:', '', 3, 'Ximport.vim')
|
2020-03-09 19:25:27 +01:00
|
|
|
|
2020-07-17 20:36:00 +02:00
|
|
|
# import a very long name, requires making a copy
|
2020-02-23 22:35:05 +01:00
|
|
|
let import_long_name_lines =<< trim END
|
|
|
|
vim9script
|
|
|
|
import name012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789 from './Xexport.vim'
|
|
|
|
END
|
|
|
|
writefile(import_long_name_lines, 'Ximport.vim')
|
2020-09-06 22:26:57 +02:00
|
|
|
assert_fails('source Ximport.vim', 'E1048:', '', 2, 'Ximport.vim')
|
2020-02-23 22:35:05 +01:00
|
|
|
|
|
|
|
let import_no_from_lines =<< trim END
|
|
|
|
vim9script
|
|
|
|
import name './Xexport.vim'
|
|
|
|
END
|
|
|
|
writefile(import_no_from_lines, 'Ximport.vim')
|
2020-09-06 22:26:57 +02:00
|
|
|
assert_fails('source Ximport.vim', 'E1070:', '', 2, 'Ximport.vim')
|
2020-02-23 22:35:05 +01:00
|
|
|
|
|
|
|
let import_invalid_string_lines =<< trim END
|
|
|
|
vim9script
|
|
|
|
import name from Xexport.vim
|
|
|
|
END
|
|
|
|
writefile(import_invalid_string_lines, 'Ximport.vim')
|
2020-09-06 22:26:57 +02:00
|
|
|
assert_fails('source Ximport.vim', 'E1071:', '', 2, 'Ximport.vim')
|
2020-02-23 22:35:05 +01:00
|
|
|
|
|
|
|
let import_wrong_name_lines =<< trim END
|
|
|
|
vim9script
|
|
|
|
import name from './XnoExport.vim'
|
|
|
|
END
|
|
|
|
writefile(import_wrong_name_lines, 'Ximport.vim')
|
2020-09-06 22:26:57 +02:00
|
|
|
assert_fails('source Ximport.vim', 'E1053:', '', 2, 'Ximport.vim')
|
2020-02-23 22:35:05 +01:00
|
|
|
|
|
|
|
let import_missing_comma_lines =<< trim END
|
|
|
|
vim9script
|
|
|
|
import {exported name} from './Xexport.vim'
|
|
|
|
END
|
2020-03-09 19:25:27 +01:00
|
|
|
writefile(import_missing_comma_lines, 'Ximport3.vim')
|
2020-09-06 22:26:57 +02:00
|
|
|
assert_fails('source Ximport3.vim', 'E1046:', '', 2, 'Ximport3.vim')
|
2020-02-23 22:35:05 +01:00
|
|
|
|
2020-01-26 15:56:19 +01:00
|
|
|
delete('Ximport.vim')
|
2020-03-09 19:25:27 +01:00
|
|
|
delete('Ximport3.vim')
|
2020-01-26 15:56:19 +01:00
|
|
|
delete('Xexport.vim')
|
|
|
|
|
2020-07-17 20:36:00 +02:00
|
|
|
# Check that in a Vim9 script 'cpo' is set to the Vim default.
|
2020-02-23 18:08:33 +01:00
|
|
|
set cpo&vi
|
|
|
|
let cpo_before = &cpo
|
|
|
|
let lines =<< trim END
|
|
|
|
vim9script
|
|
|
|
g:cpo_in_vim9script = &cpo
|
|
|
|
END
|
|
|
|
writefile(lines, 'Xvim9_script')
|
|
|
|
source Xvim9_script
|
|
|
|
assert_equal(cpo_before, &cpo)
|
|
|
|
set cpo&vim
|
|
|
|
assert_equal(&cpo, g:cpo_in_vim9script)
|
|
|
|
delete('Xvim9_script')
|
|
|
|
enddef
|
|
|
|
|
2020-08-05 16:20:03 +02:00
|
|
|
func g:Trigger()
|
|
|
|
source Ximport.vim
|
|
|
|
return "echo 'yes'\<CR>"
|
|
|
|
endfunc
|
|
|
|
|
|
|
|
def Test_import_export_expr_map()
|
|
|
|
# check that :import and :export work when buffer is locked
|
|
|
|
let export_lines =<< trim END
|
|
|
|
vim9script
|
|
|
|
export def That(): string
|
|
|
|
return 'yes'
|
|
|
|
enddef
|
|
|
|
END
|
|
|
|
writefile(export_lines, 'Xexport_that.vim')
|
|
|
|
|
|
|
|
let import_lines =<< trim END
|
|
|
|
vim9script
|
|
|
|
import That from './Xexport_that.vim'
|
|
|
|
assert_equal('yes', That())
|
|
|
|
END
|
|
|
|
writefile(import_lines, 'Ximport.vim')
|
|
|
|
|
|
|
|
nnoremap <expr> trigger g:Trigger()
|
|
|
|
feedkeys('trigger', "xt")
|
|
|
|
|
2020-08-09 13:02:10 +02:00
|
|
|
delete('Xexport_that.vim')
|
2020-08-05 16:20:03 +02:00
|
|
|
delete('Ximport.vim')
|
|
|
|
nunmap trigger
|
|
|
|
enddef
|
|
|
|
|
2020-08-06 22:11:06 +02:00
|
|
|
def Test_import_in_filetype()
|
|
|
|
# check that :import works when the buffer is locked
|
|
|
|
mkdir('ftplugin', 'p')
|
|
|
|
let export_lines =<< trim END
|
|
|
|
vim9script
|
|
|
|
export let That = 'yes'
|
|
|
|
END
|
2020-08-09 13:02:10 +02:00
|
|
|
writefile(export_lines, 'ftplugin/Xexport_ft.vim')
|
2020-08-06 22:11:06 +02:00
|
|
|
|
|
|
|
let import_lines =<< trim END
|
|
|
|
vim9script
|
2020-08-09 13:02:10 +02:00
|
|
|
import That from './Xexport_ft.vim'
|
2020-08-06 22:11:06 +02:00
|
|
|
assert_equal('yes', That)
|
|
|
|
g:did_load_mytpe = 1
|
|
|
|
END
|
|
|
|
writefile(import_lines, 'ftplugin/qf.vim')
|
|
|
|
|
|
|
|
let save_rtp = &rtp
|
|
|
|
&rtp = getcwd() .. ',' .. &rtp
|
|
|
|
|
|
|
|
filetype plugin on
|
|
|
|
copen
|
|
|
|
assert_equal(1, g:did_load_mytpe)
|
|
|
|
|
|
|
|
quit!
|
2020-08-09 13:02:10 +02:00
|
|
|
delete('Xexport_ft.vim')
|
2020-08-06 22:11:06 +02:00
|
|
|
delete('ftplugin', 'rf')
|
|
|
|
&rtp = save_rtp
|
|
|
|
enddef
|
|
|
|
|
2020-08-08 22:16:00 +02:00
|
|
|
def Test_use_import_in_mapping()
|
|
|
|
let lines =<< trim END
|
|
|
|
vim9script
|
|
|
|
export def Funcx()
|
|
|
|
g:result = 42
|
|
|
|
enddef
|
|
|
|
END
|
|
|
|
writefile(lines, 'XsomeExport.vim')
|
|
|
|
lines =<< trim END
|
|
|
|
vim9script
|
|
|
|
import Funcx from './XsomeExport.vim'
|
2020-08-09 14:43:58 +02:00
|
|
|
nnoremap <F3> :call <sid>Funcx()<cr>
|
2020-08-08 22:16:00 +02:00
|
|
|
END
|
|
|
|
writefile(lines, 'Xmapscript.vim')
|
|
|
|
|
|
|
|
source Xmapscript.vim
|
2020-08-09 14:43:58 +02:00
|
|
|
feedkeys("\<F3>", "xt")
|
2020-08-08 22:16:00 +02:00
|
|
|
assert_equal(42, g:result)
|
|
|
|
|
|
|
|
unlet g:result
|
|
|
|
delete('XsomeExport.vim')
|
|
|
|
delete('Xmapscript.vim')
|
2020-08-09 14:43:58 +02:00
|
|
|
nunmap <F3>
|
2020-08-08 22:16:00 +02:00
|
|
|
enddef
|
|
|
|
|
2020-02-23 18:08:33 +01:00
|
|
|
def Test_vim9script_fails()
|
2020-01-26 15:56:19 +01:00
|
|
|
CheckScriptFailure(['scriptversion 2', 'vim9script'], 'E1039:')
|
|
|
|
CheckScriptFailure(['vim9script', 'scriptversion 2'], 'E1040:')
|
2020-02-23 18:08:33 +01:00
|
|
|
CheckScriptFailure(['export let some = 123'], 'E1042:')
|
2020-06-11 23:10:46 +02:00
|
|
|
CheckScriptFailure(['import some from "./Xexport.vim"'], 'E1048:')
|
2020-07-11 22:14:59 +02:00
|
|
|
CheckScriptFailure(['vim9script', 'export let g:some'], 'E1022:')
|
2020-02-23 18:08:33 +01:00
|
|
|
CheckScriptFailure(['vim9script', 'export echo 134'], 'E1043:')
|
|
|
|
|
2020-08-15 16:33:28 +02:00
|
|
|
CheckScriptFailure(['vim9script', 'let str: string', 'str = 1234'], 'E1012:')
|
2020-06-19 18:34:15 +02:00
|
|
|
CheckScriptFailure(['vim9script', 'const str = "asdf"', 'str = "xxx"'], 'E46:')
|
|
|
|
|
2020-09-04 21:18:46 +02:00
|
|
|
assert_fails('vim9script', 'E1038:')
|
|
|
|
assert_fails('export something', 'E1043:')
|
2020-01-26 15:56:19 +01:00
|
|
|
enddef
|
|
|
|
|
2020-06-17 12:04:54 +02:00
|
|
|
func Test_import_fails_without_script()
|
2020-06-16 23:18:51 +02:00
|
|
|
CheckRunVimInTerminal
|
|
|
|
|
2020-06-17 20:03:36 +02:00
|
|
|
" call indirectly to avoid compilation error for missing functions
|
2020-07-08 15:16:19 +02:00
|
|
|
call Run_Test_import_fails_on_command_line()
|
2020-06-17 20:03:36 +02:00
|
|
|
endfunc
|
|
|
|
|
2020-07-08 15:16:19 +02:00
|
|
|
def Run_Test_import_fails_on_command_line()
|
2020-06-16 23:18:51 +02:00
|
|
|
let export =<< trim END
|
|
|
|
vim9script
|
|
|
|
export def Foo(): number
|
|
|
|
return 0
|
|
|
|
enddef
|
|
|
|
END
|
2020-08-09 13:02:10 +02:00
|
|
|
writefile(export, 'XexportCmd.vim')
|
2020-06-16 23:18:51 +02:00
|
|
|
|
2020-08-09 13:02:10 +02:00
|
|
|
let buf = RunVimInTerminal('-c "import Foo from ''./XexportCmd.vim''"', #{
|
2020-06-17 20:03:36 +02:00
|
|
|
rows: 6, wait_for_ruler: 0})
|
|
|
|
WaitForAssert({-> assert_match('^E1094:', term_getline(buf, 5))})
|
2020-06-16 23:18:51 +02:00
|
|
|
|
2020-08-09 13:02:10 +02:00
|
|
|
delete('XexportCmd.vim')
|
2020-06-17 20:03:36 +02:00
|
|
|
StopVimInTerminal(buf)
|
|
|
|
enddef
|
2020-06-16 23:18:51 +02:00
|
|
|
|
2020-04-27 22:47:51 +02:00
|
|
|
def Test_vim9script_reload_import()
|
2020-01-26 15:56:19 +01:00
|
|
|
let lines =<< trim END
|
|
|
|
vim9script
|
|
|
|
const var = ''
|
|
|
|
let valone = 1234
|
|
|
|
def MyFunc(arg: string)
|
|
|
|
valone = 5678
|
|
|
|
enddef
|
|
|
|
END
|
|
|
|
let morelines =<< trim END
|
|
|
|
let valtwo = 222
|
|
|
|
export def GetValtwo(): number
|
|
|
|
return valtwo
|
|
|
|
enddef
|
|
|
|
END
|
2020-04-27 23:39:30 +02:00
|
|
|
writefile(lines + morelines, 'Xreload.vim')
|
2020-01-26 15:56:19 +01:00
|
|
|
source Xreload.vim
|
|
|
|
source Xreload.vim
|
|
|
|
source Xreload.vim
|
|
|
|
|
|
|
|
let testlines =<< trim END
|
|
|
|
vim9script
|
|
|
|
def TheFunc()
|
|
|
|
import GetValtwo from './Xreload.vim'
|
|
|
|
assert_equal(222, GetValtwo())
|
|
|
|
enddef
|
|
|
|
TheFunc()
|
|
|
|
END
|
|
|
|
writefile(testlines, 'Ximport.vim')
|
|
|
|
source Ximport.vim
|
|
|
|
|
2020-07-17 20:36:00 +02:00
|
|
|
# Test that when not using "morelines" GetValtwo() and valtwo are still
|
|
|
|
# defined, because import doesn't reload a script.
|
2020-01-26 15:56:19 +01:00
|
|
|
writefile(lines, 'Xreload.vim')
|
|
|
|
source Ximport.vim
|
|
|
|
|
2020-07-17 20:36:00 +02:00
|
|
|
# cannot declare a var twice
|
2020-01-26 15:56:19 +01:00
|
|
|
lines =<< trim END
|
|
|
|
vim9script
|
|
|
|
let valone = 1234
|
|
|
|
let valone = 5678
|
|
|
|
END
|
|
|
|
writefile(lines, 'Xreload.vim')
|
2020-09-06 22:26:57 +02:00
|
|
|
assert_fails('source Xreload.vim', 'E1041:', '', 3, 'Xreload.vim')
|
2020-01-26 15:56:19 +01:00
|
|
|
|
|
|
|
delete('Xreload.vim')
|
|
|
|
delete('Ximport.vim')
|
|
|
|
enddef
|
|
|
|
|
2020-08-29 17:47:08 +02:00
|
|
|
def s:RetSome(): string
|
|
|
|
return 'some'
|
|
|
|
enddef
|
|
|
|
|
2020-07-07 22:50:12 +02:00
|
|
|
" Not exported function that is referenced needs to be accessed by the
|
|
|
|
" script-local name.
|
|
|
|
def Test_vim9script_funcref()
|
|
|
|
let sortlines =<< trim END
|
|
|
|
vim9script
|
|
|
|
def Compare(i1: number, i2: number): number
|
2020-07-07 23:31:36 +02:00
|
|
|
return i2 - i1
|
2020-07-07 22:50:12 +02:00
|
|
|
enddef
|
|
|
|
|
|
|
|
export def FastSort(): list<number>
|
|
|
|
return range(5)->sort(Compare)
|
|
|
|
enddef
|
|
|
|
END
|
|
|
|
writefile(sortlines, 'Xsort.vim')
|
|
|
|
|
|
|
|
let lines =<< trim END
|
|
|
|
vim9script
|
|
|
|
import FastSort from './Xsort.vim'
|
|
|
|
def Test()
|
|
|
|
g:result = FastSort()
|
|
|
|
enddef
|
|
|
|
Test()
|
|
|
|
END
|
|
|
|
writefile(lines, 'Xscript.vim')
|
|
|
|
|
|
|
|
source Xscript.vim
|
|
|
|
assert_equal([4, 3, 2, 1, 0], g:result)
|
|
|
|
|
|
|
|
unlet g:result
|
|
|
|
delete('Xsort.vim')
|
|
|
|
delete('Xscript.vim')
|
2020-08-29 17:47:08 +02:00
|
|
|
|
|
|
|
let Funcref = function('s:RetSome')
|
|
|
|
assert_equal('some', Funcref())
|
2020-07-07 22:50:12 +02:00
|
|
|
enddef
|
|
|
|
|
2020-08-27 21:33:10 +02:00
|
|
|
" Check that when searching for "FilterFunc" it finds the import in the
|
|
|
|
" script where FastFilter() is called from, both as a string and as a direct
|
|
|
|
" function reference.
|
2020-07-08 15:16:19 +02:00
|
|
|
def Test_vim9script_funcref_other_script()
|
|
|
|
let filterLines =<< trim END
|
|
|
|
vim9script
|
|
|
|
export def FilterFunc(idx: number, val: number): bool
|
|
|
|
return idx % 2 == 1
|
|
|
|
enddef
|
|
|
|
export def FastFilter(): list<number>
|
|
|
|
return range(10)->filter('FilterFunc')
|
|
|
|
enddef
|
2020-08-27 21:33:10 +02:00
|
|
|
export def FastFilterDirect(): list<number>
|
|
|
|
return range(10)->filter(FilterFunc)
|
|
|
|
enddef
|
2020-07-08 15:16:19 +02:00
|
|
|
END
|
|
|
|
writefile(filterLines, 'Xfilter.vim')
|
|
|
|
|
|
|
|
let lines =<< trim END
|
|
|
|
vim9script
|
2020-08-27 21:33:10 +02:00
|
|
|
import {FilterFunc, FastFilter, FastFilterDirect} from './Xfilter.vim'
|
2020-07-08 15:16:19 +02:00
|
|
|
def Test()
|
|
|
|
let x: list<number> = FastFilter()
|
|
|
|
enddef
|
|
|
|
Test()
|
2020-08-27 21:33:10 +02:00
|
|
|
def TestDirect()
|
|
|
|
let x: list<number> = FastFilterDirect()
|
|
|
|
enddef
|
|
|
|
TestDirect()
|
2020-07-08 15:16:19 +02:00
|
|
|
END
|
2020-08-27 21:33:10 +02:00
|
|
|
CheckScriptSuccess(lines)
|
2020-07-08 15:16:19 +02:00
|
|
|
delete('Xfilter.vim')
|
|
|
|
enddef
|
|
|
|
|
2020-04-27 22:47:51 +02:00
|
|
|
def Test_vim9script_reload_delfunc()
|
|
|
|
let first_lines =<< trim END
|
|
|
|
vim9script
|
|
|
|
def FuncYes(): string
|
|
|
|
return 'yes'
|
|
|
|
enddef
|
|
|
|
END
|
2020-04-27 23:39:30 +02:00
|
|
|
let withno_lines =<< trim END
|
2020-04-27 22:47:51 +02:00
|
|
|
def FuncNo(): string
|
|
|
|
return 'no'
|
|
|
|
enddef
|
2020-04-27 23:39:30 +02:00
|
|
|
def g:DoCheck(no_exists: bool)
|
|
|
|
assert_equal('yes', FuncYes())
|
|
|
|
assert_equal('no', FuncNo())
|
|
|
|
enddef
|
2020-04-27 22:47:51 +02:00
|
|
|
END
|
2020-04-27 23:39:30 +02:00
|
|
|
let nono_lines =<< trim END
|
2020-04-27 22:47:51 +02:00
|
|
|
def g:DoCheck(no_exists: bool)
|
|
|
|
assert_equal('yes', FuncYes())
|
2020-09-06 22:26:57 +02:00
|
|
|
assert_fails('FuncNo()', 'E117:', '', 2, 'DoCheck')
|
2020-04-27 22:47:51 +02:00
|
|
|
enddef
|
|
|
|
END
|
|
|
|
|
|
|
|
# FuncNo() is defined
|
2020-04-27 23:39:30 +02:00
|
|
|
writefile(first_lines + withno_lines, 'Xreloaded.vim')
|
2020-04-27 22:47:51 +02:00
|
|
|
source Xreloaded.vim
|
|
|
|
g:DoCheck(true)
|
|
|
|
|
|
|
|
# FuncNo() is not redefined
|
2020-04-27 23:39:30 +02:00
|
|
|
writefile(first_lines + nono_lines, 'Xreloaded.vim')
|
2020-04-27 22:47:51 +02:00
|
|
|
source Xreloaded.vim
|
2020-04-27 23:39:30 +02:00
|
|
|
g:DoCheck()
|
2020-04-27 22:47:51 +02:00
|
|
|
|
|
|
|
# FuncNo() is back
|
2020-04-27 23:39:30 +02:00
|
|
|
writefile(first_lines + withno_lines, 'Xreloaded.vim')
|
2020-04-27 22:47:51 +02:00
|
|
|
source Xreloaded.vim
|
2020-04-27 23:39:30 +02:00
|
|
|
g:DoCheck()
|
2020-04-27 22:47:51 +02:00
|
|
|
|
|
|
|
delete('Xreloaded.vim')
|
|
|
|
enddef
|
|
|
|
|
2020-05-10 15:24:44 +02:00
|
|
|
def Test_vim9script_reload_delvar()
|
|
|
|
# write the script with a script-local variable
|
|
|
|
let lines =<< trim END
|
|
|
|
vim9script
|
|
|
|
let var = 'string'
|
|
|
|
END
|
|
|
|
writefile(lines, 'XreloadVar.vim')
|
|
|
|
source XreloadVar.vim
|
|
|
|
|
|
|
|
# now write the script using the same variable locally - works
|
|
|
|
lines =<< trim END
|
|
|
|
vim9script
|
|
|
|
def Func()
|
|
|
|
let var = 'string'
|
|
|
|
enddef
|
|
|
|
END
|
|
|
|
writefile(lines, 'XreloadVar.vim')
|
|
|
|
source XreloadVar.vim
|
|
|
|
|
|
|
|
delete('XreloadVar.vim')
|
|
|
|
enddef
|
|
|
|
|
2020-01-26 15:56:19 +01:00
|
|
|
def Test_import_absolute()
|
|
|
|
let import_lines = [
|
2020-04-12 20:19:16 +02:00
|
|
|
'vim9script',
|
|
|
|
'import exported from "' .. escape(getcwd(), '\') .. '/Xexport_abs.vim"',
|
|
|
|
'def UseExported()',
|
|
|
|
' g:imported_abs = exported',
|
|
|
|
' exported = 8888',
|
|
|
|
' g:imported_after = exported',
|
|
|
|
'enddef',
|
|
|
|
'UseExported()',
|
|
|
|
'g:import_disassembled = execute("disass UseExported")',
|
|
|
|
]
|
2020-01-26 15:56:19 +01:00
|
|
|
writefile(import_lines, 'Ximport_abs.vim')
|
|
|
|
writefile(s:export_script_lines, 'Xexport_abs.vim')
|
|
|
|
|
|
|
|
source Ximport_abs.vim
|
|
|
|
|
|
|
|
assert_equal(9876, g:imported_abs)
|
2020-02-03 20:50:59 +01:00
|
|
|
assert_equal(8888, g:imported_after)
|
2020-04-12 22:53:54 +02:00
|
|
|
assert_match('<SNR>\d\+_UseExported.*' ..
|
|
|
|
'g:imported_abs = exported.*' ..
|
|
|
|
'0 LOADSCRIPT exported from .*Xexport_abs.vim.*' ..
|
|
|
|
'1 STOREG g:imported_abs.*' ..
|
|
|
|
'exported = 8888.*' ..
|
|
|
|
'3 STORESCRIPT exported in .*Xexport_abs.vim.*' ..
|
|
|
|
'g:imported_after = exported.*' ..
|
|
|
|
'4 LOADSCRIPT exported from .*Xexport_abs.vim.*' ..
|
|
|
|
'5 STOREG g:imported_after.*',
|
2020-04-12 20:19:16 +02:00
|
|
|
g:import_disassembled)
|
2020-08-09 14:43:58 +02:00
|
|
|
|
|
|
|
Undo_export_script_lines()
|
2020-01-26 15:56:19 +01:00
|
|
|
unlet g:imported_abs
|
2020-02-03 20:50:59 +01:00
|
|
|
unlet g:import_disassembled
|
2020-01-26 15:56:19 +01:00
|
|
|
|
|
|
|
delete('Ximport_abs.vim')
|
|
|
|
delete('Xexport_abs.vim')
|
|
|
|
enddef
|
|
|
|
|
|
|
|
def Test_import_rtp()
|
|
|
|
let import_lines = [
|
2020-04-12 20:19:16 +02:00
|
|
|
'vim9script',
|
|
|
|
'import exported from "Xexport_rtp.vim"',
|
|
|
|
'g:imported_rtp = exported',
|
|
|
|
]
|
2020-01-26 15:56:19 +01:00
|
|
|
writefile(import_lines, 'Ximport_rtp.vim')
|
|
|
|
mkdir('import')
|
|
|
|
writefile(s:export_script_lines, 'import/Xexport_rtp.vim')
|
|
|
|
|
|
|
|
let save_rtp = &rtp
|
|
|
|
&rtp = getcwd()
|
|
|
|
source Ximport_rtp.vim
|
|
|
|
&rtp = save_rtp
|
|
|
|
|
|
|
|
assert_equal(9876, g:imported_rtp)
|
|
|
|
|
2020-08-09 14:43:58 +02:00
|
|
|
Undo_export_script_lines()
|
|
|
|
unlet g:imported_rtp
|
2020-01-26 15:56:19 +01:00
|
|
|
delete('Ximport_rtp.vim')
|
2020-05-10 15:24:44 +02:00
|
|
|
delete('import', 'rf')
|
2020-01-26 15:56:19 +01:00
|
|
|
enddef
|
|
|
|
|
2020-05-25 22:36:50 +02:00
|
|
|
def Test_import_compile_error()
|
|
|
|
let export_lines = [
|
|
|
|
'vim9script',
|
|
|
|
'export def ExpFunc(): string',
|
|
|
|
' return notDefined',
|
|
|
|
'enddef',
|
|
|
|
]
|
|
|
|
writefile(export_lines, 'Xexported.vim')
|
|
|
|
|
|
|
|
let import_lines = [
|
|
|
|
'vim9script',
|
|
|
|
'import ExpFunc from "./Xexported.vim"',
|
|
|
|
'def ImpFunc()',
|
|
|
|
' echo ExpFunc()',
|
|
|
|
'enddef',
|
|
|
|
'defcompile',
|
|
|
|
]
|
|
|
|
writefile(import_lines, 'Ximport.vim')
|
|
|
|
|
|
|
|
try
|
|
|
|
source Ximport.vim
|
|
|
|
catch /E1001/
|
2020-07-17 20:36:00 +02:00
|
|
|
# Error should be fore the Xexported.vim file.
|
2020-09-16 17:55:40 +02:00
|
|
|
assert_match('E1001: Variable not found: notDefined', v:exception)
|
2020-05-25 22:36:50 +02:00
|
|
|
assert_match('function <SNR>\d\+_ImpFunc\[1\]..<SNR>\d\+_ExpFunc, line 1', v:throwpoint)
|
|
|
|
endtry
|
|
|
|
|
|
|
|
delete('Xexported.vim')
|
|
|
|
delete('Ximport.vim')
|
|
|
|
enddef
|
|
|
|
|
2020-08-14 17:08:15 +02:00
|
|
|
def Test_func_redefine_error()
|
|
|
|
let lines = [
|
|
|
|
'vim9script',
|
|
|
|
'def Func()',
|
|
|
|
' eval [][0]',
|
|
|
|
'enddef',
|
|
|
|
'Func()',
|
|
|
|
]
|
|
|
|
writefile(lines, 'Xtestscript.vim')
|
|
|
|
|
|
|
|
for count in range(3)
|
|
|
|
try
|
|
|
|
source Xtestscript.vim
|
|
|
|
catch /E684/
|
|
|
|
# function name should contain <SNR> every time
|
|
|
|
assert_match('E684: list index out of range', v:exception)
|
|
|
|
assert_match('function <SNR>\d\+_Func, line 1', v:throwpoint)
|
|
|
|
endtry
|
|
|
|
endfor
|
|
|
|
|
|
|
|
delete('Xtestscript.vim')
|
|
|
|
enddef
|
|
|
|
|
2020-08-01 22:16:43 +02:00
|
|
|
def Test_func_overrules_import_fails()
|
|
|
|
let export_lines =<< trim END
|
|
|
|
vim9script
|
|
|
|
export def Func()
|
|
|
|
echo 'imported'
|
|
|
|
enddef
|
|
|
|
END
|
|
|
|
writefile(export_lines, 'XexportedFunc.vim')
|
|
|
|
|
|
|
|
let lines =<< trim END
|
|
|
|
vim9script
|
|
|
|
import Func from './XexportedFunc.vim'
|
|
|
|
def Func()
|
|
|
|
echo 'local to function'
|
|
|
|
enddef
|
|
|
|
END
|
|
|
|
CheckScriptFailure(lines, 'E1073:')
|
|
|
|
|
|
|
|
lines =<< trim END
|
|
|
|
vim9script
|
|
|
|
import Func from './XexportedFunc.vim'
|
|
|
|
def Outer()
|
|
|
|
def Func()
|
|
|
|
echo 'local to function'
|
|
|
|
enddef
|
|
|
|
enddef
|
|
|
|
defcompile
|
|
|
|
END
|
|
|
|
CheckScriptFailure(lines, 'E1073:')
|
|
|
|
|
|
|
|
delete('XexportedFunc.vim')
|
|
|
|
enddef
|
|
|
|
|
2020-08-01 22:23:20 +02:00
|
|
|
def Test_func_redefine_fails()
|
|
|
|
let lines =<< trim END
|
|
|
|
vim9script
|
|
|
|
def Func()
|
|
|
|
echo 'one'
|
|
|
|
enddef
|
|
|
|
def Func()
|
|
|
|
echo 'two'
|
|
|
|
enddef
|
|
|
|
END
|
|
|
|
CheckScriptFailure(lines, 'E1073:')
|
2020-08-07 22:00:26 +02:00
|
|
|
|
|
|
|
lines =<< trim END
|
|
|
|
vim9script
|
|
|
|
def Foo(): string
|
|
|
|
return 'foo'
|
|
|
|
enddef
|
|
|
|
def Func()
|
|
|
|
let Foo = {-> 'lambda'}
|
|
|
|
enddef
|
|
|
|
defcompile
|
|
|
|
END
|
|
|
|
CheckScriptFailure(lines, 'E1073:')
|
2020-08-01 22:23:20 +02:00
|
|
|
enddef
|
|
|
|
|
2020-01-26 15:56:19 +01:00
|
|
|
def Test_fixed_size_list()
|
2020-07-17 20:36:00 +02:00
|
|
|
# will be allocated as one piece of memory, check that changes work
|
2020-01-26 15:56:19 +01:00
|
|
|
let l = [1, 2, 3, 4]
|
|
|
|
l->remove(0)
|
|
|
|
l->add(5)
|
|
|
|
l->insert(99, 1)
|
2020-02-02 17:22:27 +01:00
|
|
|
assert_equal([2, 99, 3, 4, 5], l)
|
2020-01-26 15:56:19 +01:00
|
|
|
enddef
|
|
|
|
|
2020-07-28 20:07:27 +02:00
|
|
|
def Test_no_insert_xit()
|
2020-09-06 15:58:36 +02:00
|
|
|
CheckDefExecFailure(['a = 1'], 'E1100:')
|
|
|
|
CheckDefExecFailure(['c = 1'], 'E1100:')
|
|
|
|
CheckDefExecFailure(['i = 1'], 'E1100:')
|
|
|
|
CheckDefExecFailure(['t = 1'], 'E1100:')
|
|
|
|
CheckDefExecFailure(['x = 1'], 'E1100:')
|
2020-07-28 20:07:27 +02:00
|
|
|
|
|
|
|
CheckScriptFailure(['vim9script', 'a = 1'], 'E488:')
|
|
|
|
CheckScriptFailure(['vim9script', 'a'], 'E1100:')
|
|
|
|
CheckScriptFailure(['vim9script', 'c = 1'], 'E488:')
|
|
|
|
CheckScriptFailure(['vim9script', 'c'], 'E1100:')
|
2020-08-01 17:00:03 +02:00
|
|
|
CheckScriptFailure(['vim9script', 'i = 1'], 'E488:')
|
|
|
|
CheckScriptFailure(['vim9script', 'i'], 'E1100:')
|
|
|
|
CheckScriptFailure(['vim9script', 't'], 'E1100:')
|
|
|
|
CheckScriptFailure(['vim9script', 't = 1'], 'E1100:')
|
|
|
|
CheckScriptFailure(['vim9script', 'x = 1'], 'E1100:')
|
2020-07-28 20:07:27 +02:00
|
|
|
enddef
|
|
|
|
|
2020-02-06 20:39:45 +01:00
|
|
|
def IfElse(what: number): string
|
|
|
|
let res = ''
|
|
|
|
if what == 1
|
|
|
|
res = "one"
|
|
|
|
elseif what == 2
|
|
|
|
res = "two"
|
2020-01-31 20:10:50 +01:00
|
|
|
else
|
2020-02-06 20:39:45 +01:00
|
|
|
res = "three"
|
2020-01-31 20:10:50 +01:00
|
|
|
endif
|
2020-02-06 20:39:45 +01:00
|
|
|
return res
|
2020-01-31 20:10:50 +01:00
|
|
|
enddef
|
|
|
|
|
2020-02-06 20:39:45 +01:00
|
|
|
def Test_if_elseif_else()
|
|
|
|
assert_equal('one', IfElse(1))
|
|
|
|
assert_equal('two', IfElse(2))
|
|
|
|
assert_equal('three', IfElse(3))
|
2020-02-02 17:22:27 +01:00
|
|
|
enddef
|
|
|
|
|
2020-04-02 21:13:25 +02:00
|
|
|
def Test_if_elseif_else_fails()
|
2020-09-06 15:58:36 +02:00
|
|
|
CheckDefFailure(['elseif true'], 'E582:')
|
|
|
|
CheckDefFailure(['else'], 'E581:')
|
|
|
|
CheckDefFailure(['endif'], 'E580:')
|
|
|
|
CheckDefFailure(['if true', 'elseif xxx'], 'E1001:')
|
|
|
|
CheckDefFailure(['if true', 'echo 1'], 'E171:')
|
2020-04-02 21:13:25 +02:00
|
|
|
enddef
|
|
|
|
|
2020-03-03 19:02:12 +01:00
|
|
|
let g:bool_true = v:true
|
|
|
|
let g:bool_false = v:false
|
|
|
|
|
|
|
|
def Test_if_const_expr()
|
|
|
|
let res = false
|
|
|
|
if true ? true : false
|
|
|
|
res = true
|
|
|
|
endif
|
|
|
|
assert_equal(true, res)
|
|
|
|
|
2020-04-02 22:33:21 +02:00
|
|
|
g:glob = 2
|
|
|
|
if false
|
2020-06-20 22:50:47 +02:00
|
|
|
execute('g:glob = 3')
|
2020-04-02 22:33:21 +02:00
|
|
|
endif
|
|
|
|
assert_equal(2, g:glob)
|
|
|
|
if true
|
2020-06-20 22:50:47 +02:00
|
|
|
execute('g:glob = 3')
|
2020-04-02 22:33:21 +02:00
|
|
|
endif
|
|
|
|
assert_equal(3, g:glob)
|
|
|
|
|
2020-03-03 19:02:12 +01:00
|
|
|
res = false
|
|
|
|
if g:bool_true ? true : false
|
|
|
|
res = true
|
|
|
|
endif
|
|
|
|
assert_equal(true, res)
|
|
|
|
|
|
|
|
res = false
|
|
|
|
if true ? g:bool_true : false
|
|
|
|
res = true
|
|
|
|
endif
|
|
|
|
assert_equal(true, res)
|
|
|
|
|
|
|
|
res = false
|
|
|
|
if true ? true : g:bool_false
|
|
|
|
res = true
|
|
|
|
endif
|
|
|
|
assert_equal(true, res)
|
|
|
|
|
|
|
|
res = false
|
|
|
|
if true ? false : true
|
|
|
|
res = true
|
|
|
|
endif
|
|
|
|
assert_equal(false, res)
|
|
|
|
|
|
|
|
res = false
|
|
|
|
if false ? false : true
|
|
|
|
res = true
|
|
|
|
endif
|
|
|
|
assert_equal(true, res)
|
|
|
|
|
|
|
|
res = false
|
|
|
|
if false ? true : false
|
|
|
|
res = true
|
|
|
|
endif
|
|
|
|
assert_equal(false, res)
|
|
|
|
|
2020-04-02 21:13:25 +02:00
|
|
|
res = false
|
|
|
|
if has('xyz') ? true : false
|
|
|
|
res = true
|
|
|
|
endif
|
|
|
|
assert_equal(false, res)
|
|
|
|
|
2020-03-03 19:02:12 +01:00
|
|
|
res = false
|
|
|
|
if true && true
|
|
|
|
res = true
|
|
|
|
endif
|
|
|
|
assert_equal(true, res)
|
|
|
|
|
|
|
|
res = false
|
|
|
|
if true && false
|
|
|
|
res = true
|
|
|
|
endif
|
|
|
|
assert_equal(false, res)
|
|
|
|
|
|
|
|
res = false
|
|
|
|
if g:bool_true && false
|
|
|
|
res = true
|
|
|
|
endif
|
|
|
|
assert_equal(false, res)
|
|
|
|
|
|
|
|
res = false
|
|
|
|
if true && g:bool_false
|
|
|
|
res = true
|
|
|
|
endif
|
|
|
|
assert_equal(false, res)
|
|
|
|
|
|
|
|
res = false
|
|
|
|
if false && false
|
|
|
|
res = true
|
|
|
|
endif
|
|
|
|
assert_equal(false, res)
|
|
|
|
|
|
|
|
res = false
|
|
|
|
if true || false
|
|
|
|
res = true
|
|
|
|
endif
|
|
|
|
assert_equal(true, res)
|
|
|
|
|
|
|
|
res = false
|
|
|
|
if g:bool_true || false
|
|
|
|
res = true
|
|
|
|
endif
|
|
|
|
assert_equal(true, res)
|
|
|
|
|
|
|
|
res = false
|
|
|
|
if true || g:bool_false
|
|
|
|
res = true
|
|
|
|
endif
|
|
|
|
assert_equal(true, res)
|
|
|
|
|
|
|
|
res = false
|
|
|
|
if false || false
|
|
|
|
res = true
|
|
|
|
endif
|
|
|
|
assert_equal(false, res)
|
2020-08-27 22:43:03 +02:00
|
|
|
|
|
|
|
# with constant "false" expression may be invalid so long as the syntax is OK
|
|
|
|
if false | eval 0 | endif
|
|
|
|
if false | eval burp + 234 | endif
|
|
|
|
if false | echo burp 234 'asd' | endif
|
|
|
|
if false
|
|
|
|
burp
|
|
|
|
endif
|
2020-04-01 23:05:18 +02:00
|
|
|
enddef
|
2020-03-03 19:02:12 +01:00
|
|
|
|
2020-04-01 23:05:18 +02:00
|
|
|
def Test_if_const_expr_fails()
|
2020-09-06 15:58:36 +02:00
|
|
|
CheckDefFailure(['if "aaa" == "bbb'], 'E114:')
|
|
|
|
CheckDefFailure(["if 'aaa' == 'bbb"], 'E115:')
|
|
|
|
CheckDefFailure(["if has('aaa'"], 'E110:')
|
|
|
|
CheckDefFailure(["if has('aaa') ? true false"], 'E109:')
|
2020-03-03 19:02:12 +01:00
|
|
|
enddef
|
|
|
|
|
2020-06-18 18:26:24 +02:00
|
|
|
def RunNested(i: number): number
|
|
|
|
let x: number = 0
|
|
|
|
if i % 2
|
|
|
|
if 1
|
2020-07-17 20:36:00 +02:00
|
|
|
# comment
|
2020-06-18 18:26:24 +02:00
|
|
|
else
|
2020-07-17 20:36:00 +02:00
|
|
|
# comment
|
2020-06-18 18:26:24 +02:00
|
|
|
endif
|
|
|
|
x += 1
|
|
|
|
else
|
|
|
|
x += 1000
|
|
|
|
endif
|
|
|
|
return x
|
|
|
|
enddef
|
|
|
|
|
|
|
|
def Test_nested_if()
|
|
|
|
assert_equal(1, RunNested(1))
|
|
|
|
assert_equal(1000, RunNested(2))
|
|
|
|
enddef
|
|
|
|
|
2020-02-26 18:23:43 +01:00
|
|
|
def Test_execute_cmd()
|
|
|
|
new
|
|
|
|
setline(1, 'default')
|
2020-09-06 15:58:36 +02:00
|
|
|
execute 'setline(1, "execute-string")'
|
2020-02-26 18:23:43 +01:00
|
|
|
assert_equal('execute-string', getline(1))
|
2020-04-23 17:07:30 +02:00
|
|
|
|
2020-09-06 15:58:36 +02:00
|
|
|
execute "setline(1, 'execute-string')"
|
2020-04-23 17:07:30 +02:00
|
|
|
assert_equal('execute-string', getline(1))
|
|
|
|
|
2020-09-06 15:58:36 +02:00
|
|
|
let cmd1 = 'setline(1,'
|
2020-02-26 18:23:43 +01:00
|
|
|
let cmd2 = '"execute-var")'
|
2020-04-23 17:07:30 +02:00
|
|
|
execute cmd1 cmd2 # comment
|
2020-02-26 18:23:43 +01:00
|
|
|
assert_equal('execute-var', getline(1))
|
2020-04-23 17:07:30 +02:00
|
|
|
|
2020-09-06 15:58:36 +02:00
|
|
|
execute cmd1 cmd2 '|setline(1, "execute-var-string")'
|
2020-02-26 18:23:43 +01:00
|
|
|
assert_equal('execute-var-string', getline(1))
|
2020-04-23 17:07:30 +02:00
|
|
|
|
2020-02-26 18:23:43 +01:00
|
|
|
let cmd_first = 'call '
|
|
|
|
let cmd_last = 'setline(1, "execute-var-var")'
|
|
|
|
execute cmd_first .. cmd_last
|
|
|
|
assert_equal('execute-var-var', getline(1))
|
|
|
|
bwipe!
|
2020-04-02 22:33:21 +02:00
|
|
|
|
2020-07-25 19:30:59 +02:00
|
|
|
let n = true
|
|
|
|
execute 'echomsg' (n ? '"true"' : '"no"')
|
|
|
|
assert_match('^true$', Screenline(&lines))
|
|
|
|
|
2020-08-16 18:29:35 +02:00
|
|
|
echomsg [1, 2, 3] #{a: 1, b: 2}
|
|
|
|
assert_match('^\[1, 2, 3\] {''a'': 1, ''b'': 2}$', Screenline(&lines))
|
|
|
|
|
2020-09-06 15:58:36 +02:00
|
|
|
CheckDefFailure(['execute xxx'], 'E1001:', 1)
|
|
|
|
CheckDefExecFailure(['execute "tabnext " .. 8'], 'E475:', 1)
|
|
|
|
CheckDefFailure(['execute "cmd"# comment'], 'E488:', 1)
|
2020-02-26 18:23:43 +01:00
|
|
|
enddef
|
|
|
|
|
2020-06-30 22:02:02 +02:00
|
|
|
def Test_execute_cmd_vimscript()
|
2020-07-17 20:36:00 +02:00
|
|
|
# only checks line continuation
|
2020-06-30 22:02:02 +02:00
|
|
|
let lines =<< trim END
|
|
|
|
vim9script
|
|
|
|
execute 'g:someVar'
|
|
|
|
.. ' = ' ..
|
|
|
|
'28'
|
|
|
|
assert_equal(28, g:someVar)
|
|
|
|
unlet g:someVar
|
|
|
|
END
|
|
|
|
CheckScriptSuccess(lines)
|
|
|
|
enddef
|
|
|
|
|
2020-02-26 18:23:43 +01:00
|
|
|
def Test_echo_cmd()
|
2020-04-23 17:07:30 +02:00
|
|
|
echo 'some' # comment
|
2020-04-02 22:33:21 +02:00
|
|
|
echon 'thing'
|
2020-02-26 18:23:43 +01:00
|
|
|
assert_match('^something$', Screenline(&lines))
|
|
|
|
|
2020-04-23 17:07:30 +02:00
|
|
|
echo "some" # comment
|
|
|
|
echon "thing"
|
|
|
|
assert_match('^something$', Screenline(&lines))
|
|
|
|
|
2020-02-26 18:23:43 +01:00
|
|
|
let str1 = 'some'
|
|
|
|
let str2 = 'more'
|
|
|
|
echo str1 str2
|
|
|
|
assert_match('^some more$', Screenline(&lines))
|
2020-04-23 17:07:30 +02:00
|
|
|
|
2020-09-06 15:58:36 +02:00
|
|
|
CheckDefFailure(['echo "xxx"# comment'], 'E488:')
|
2020-02-26 18:23:43 +01:00
|
|
|
enddef
|
|
|
|
|
2020-04-23 22:16:53 +02:00
|
|
|
def Test_echomsg_cmd()
|
|
|
|
echomsg 'some' 'more' # comment
|
|
|
|
assert_match('^some more$', Screenline(&lines))
|
|
|
|
echo 'clear'
|
2020-06-22 23:02:51 +02:00
|
|
|
:1messages
|
2020-04-23 22:16:53 +02:00
|
|
|
assert_match('^some more$', Screenline(&lines))
|
|
|
|
|
2020-09-06 15:58:36 +02:00
|
|
|
CheckDefFailure(['echomsg "xxx"# comment'], 'E488:')
|
2020-04-23 22:16:53 +02:00
|
|
|
enddef
|
|
|
|
|
2020-06-30 22:02:02 +02:00
|
|
|
def Test_echomsg_cmd_vimscript()
|
2020-07-17 20:36:00 +02:00
|
|
|
# only checks line continuation
|
2020-06-30 22:02:02 +02:00
|
|
|
let lines =<< trim END
|
|
|
|
vim9script
|
|
|
|
echomsg 'here'
|
|
|
|
.. ' is ' ..
|
|
|
|
'a message'
|
|
|
|
assert_match('^here is a message$', Screenline(&lines))
|
|
|
|
END
|
|
|
|
CheckScriptSuccess(lines)
|
|
|
|
enddef
|
|
|
|
|
2020-04-23 22:16:53 +02:00
|
|
|
def Test_echoerr_cmd()
|
2020-05-05 22:08:26 +02:00
|
|
|
try
|
|
|
|
echoerr 'something' 'wrong' # comment
|
|
|
|
catch
|
|
|
|
assert_match('something wrong', v:exception)
|
|
|
|
endtry
|
2020-04-23 22:16:53 +02:00
|
|
|
enddef
|
|
|
|
|
2020-06-30 22:02:02 +02:00
|
|
|
def Test_echoerr_cmd_vimscript()
|
2020-07-17 20:36:00 +02:00
|
|
|
# only checks line continuation
|
2020-06-30 22:02:02 +02:00
|
|
|
let lines =<< trim END
|
|
|
|
vim9script
|
|
|
|
try
|
|
|
|
echoerr 'this'
|
|
|
|
.. ' is ' ..
|
|
|
|
'wrong'
|
|
|
|
catch
|
|
|
|
assert_match('this is wrong', v:exception)
|
|
|
|
endtry
|
|
|
|
END
|
|
|
|
CheckScriptSuccess(lines)
|
|
|
|
enddef
|
|
|
|
|
2020-03-01 16:22:40 +01:00
|
|
|
def Test_for_outside_of_function()
|
|
|
|
let lines =<< trim END
|
|
|
|
vim9script
|
|
|
|
new
|
|
|
|
for var in range(0, 3)
|
|
|
|
append(line('$'), var)
|
|
|
|
endfor
|
|
|
|
assert_equal(['', '0', '1', '2', '3'], getline(1, '$'))
|
|
|
|
bwipe!
|
|
|
|
END
|
|
|
|
writefile(lines, 'Xvim9for.vim')
|
|
|
|
source Xvim9for.vim
|
|
|
|
delete('Xvim9for.vim')
|
|
|
|
enddef
|
2020-01-26 15:56:19 +01:00
|
|
|
|
2020-04-02 21:13:25 +02:00
|
|
|
def Test_for_loop()
|
|
|
|
let result = ''
|
|
|
|
for cnt in range(7)
|
|
|
|
if cnt == 4
|
|
|
|
break
|
|
|
|
endif
|
|
|
|
if cnt == 2
|
|
|
|
continue
|
|
|
|
endif
|
|
|
|
result ..= cnt .. '_'
|
|
|
|
endfor
|
|
|
|
assert_equal('0_1_3_', result)
|
2020-07-05 21:38:11 +02:00
|
|
|
|
|
|
|
let concat = ''
|
|
|
|
for str in eval('["one", "two"]')
|
|
|
|
concat ..= str
|
|
|
|
endfor
|
|
|
|
assert_equal('onetwo', concat)
|
2020-04-02 21:13:25 +02:00
|
|
|
enddef
|
|
|
|
|
|
|
|
def Test_for_loop_fails()
|
2020-04-12 22:53:54 +02:00
|
|
|
CheckDefFailure(['for # in range(5)'], 'E690:')
|
|
|
|
CheckDefFailure(['for i In range(5)'], 'E690:')
|
2020-08-15 16:33:28 +02:00
|
|
|
CheckDefFailure(['let x = 5', 'for x in range(5)'], 'E1017:')
|
2020-05-24 23:00:18 +02:00
|
|
|
CheckScriptFailure(['def Func(arg: any)', 'for arg in range(5)', 'enddef', 'defcompile'], 'E1006:')
|
2020-08-15 16:33:28 +02:00
|
|
|
CheckDefFailure(['for i in "text"'], 'E1012:')
|
2020-04-12 22:53:54 +02:00
|
|
|
CheckDefFailure(['for i in xxx'], 'E1001:')
|
|
|
|
CheckDefFailure(['endfor'], 'E588:')
|
|
|
|
CheckDefFailure(['for i in range(3)', 'echo 3'], 'E170:')
|
2020-04-02 21:13:25 +02:00
|
|
|
enddef
|
|
|
|
|
2020-03-04 21:50:46 +01:00
|
|
|
def Test_while_loop()
|
|
|
|
let result = ''
|
|
|
|
let cnt = 0
|
|
|
|
while cnt < 555
|
|
|
|
if cnt == 3
|
|
|
|
break
|
|
|
|
endif
|
|
|
|
cnt += 1
|
|
|
|
if cnt == 2
|
|
|
|
continue
|
|
|
|
endif
|
|
|
|
result ..= cnt .. '_'
|
|
|
|
endwhile
|
|
|
|
assert_equal('1_3_', result)
|
|
|
|
enddef
|
|
|
|
|
2020-04-02 21:13:25 +02:00
|
|
|
def Test_while_loop_fails()
|
2020-04-12 22:53:54 +02:00
|
|
|
CheckDefFailure(['while xxx'], 'E1001:')
|
|
|
|
CheckDefFailure(['endwhile'], 'E588:')
|
|
|
|
CheckDefFailure(['continue'], 'E586:')
|
|
|
|
CheckDefFailure(['if true', 'continue'], 'E586:')
|
|
|
|
CheckDefFailure(['break'], 'E587:')
|
|
|
|
CheckDefFailure(['if true', 'break'], 'E587:')
|
|
|
|
CheckDefFailure(['while 1', 'echo 3'], 'E170:')
|
2020-03-31 23:13:10 +02:00
|
|
|
enddef
|
|
|
|
|
2020-03-20 20:48:49 +01:00
|
|
|
def Test_interrupt_loop()
|
2020-03-22 13:44:28 +01:00
|
|
|
let caught = false
|
2020-03-20 20:48:49 +01:00
|
|
|
let x = 0
|
2020-03-22 13:44:28 +01:00
|
|
|
try
|
|
|
|
while 1
|
|
|
|
x += 1
|
|
|
|
if x == 100
|
|
|
|
feedkeys("\<C-C>", 'Lt')
|
|
|
|
endif
|
|
|
|
endwhile
|
|
|
|
catch
|
|
|
|
caught = true
|
|
|
|
assert_equal(100, x)
|
|
|
|
endtry
|
|
|
|
assert_true(caught, 'should have caught an exception')
|
2020-08-30 12:54:53 +02:00
|
|
|
# consume the CTRL-C
|
|
|
|
getchar(0)
|
2020-03-20 20:48:49 +01:00
|
|
|
enddef
|
2020-03-20 18:39:46 +01:00
|
|
|
|
2020-04-12 16:38:57 +02:00
|
|
|
def Test_automatic_line_continuation()
|
|
|
|
let mylist = [
|
|
|
|
'one',
|
|
|
|
'two',
|
|
|
|
'three',
|
2020-07-17 20:36:00 +02:00
|
|
|
] # comment
|
2020-04-12 16:38:57 +02:00
|
|
|
assert_equal(['one', 'two', 'three'], mylist)
|
|
|
|
|
|
|
|
let mydict = {
|
|
|
|
'one': 1,
|
|
|
|
'two': 2,
|
|
|
|
'three':
|
|
|
|
3,
|
2020-07-17 20:36:00 +02:00
|
|
|
} # comment
|
2020-04-12 16:38:57 +02:00
|
|
|
assert_equal({'one': 1, 'two': 2, 'three': 3}, mydict)
|
|
|
|
mydict = #{
|
2020-04-13 14:41:35 +02:00
|
|
|
one: 1, # comment
|
|
|
|
two: # comment
|
|
|
|
2, # comment
|
|
|
|
three: 3 # comment
|
|
|
|
}
|
|
|
|
assert_equal(#{one: 1, two: 2, three: 3}, mydict)
|
|
|
|
mydict = #{
|
|
|
|
one: 1,
|
|
|
|
two:
|
|
|
|
2,
|
|
|
|
three: 3
|
2020-04-12 16:38:57 +02:00
|
|
|
}
|
|
|
|
assert_equal(#{one: 1, two: 2, three: 3}, mydict)
|
2020-04-12 20:19:16 +02:00
|
|
|
|
|
|
|
assert_equal(
|
|
|
|
['one', 'two', 'three'],
|
|
|
|
split('one two three')
|
|
|
|
)
|
2020-04-12 16:38:57 +02:00
|
|
|
enddef
|
|
|
|
|
2020-04-16 22:10:49 +02:00
|
|
|
def Test_vim9_comment()
|
|
|
|
CheckScriptSuccess([
|
|
|
|
'vim9script',
|
|
|
|
'# something',
|
|
|
|
])
|
|
|
|
CheckScriptFailure([
|
|
|
|
'vim9script',
|
|
|
|
':# something',
|
|
|
|
], 'E488:')
|
|
|
|
CheckScriptFailure([
|
|
|
|
'# something',
|
|
|
|
], 'E488:')
|
|
|
|
CheckScriptFailure([
|
|
|
|
':# something',
|
|
|
|
], 'E488:')
|
|
|
|
|
2020-04-16 22:54:32 +02:00
|
|
|
{ # block start
|
|
|
|
} # block end
|
|
|
|
CheckDefFailure([
|
|
|
|
'{# comment',
|
|
|
|
], 'E488:')
|
|
|
|
CheckDefFailure([
|
|
|
|
'{',
|
|
|
|
'}# comment',
|
|
|
|
], 'E488:')
|
|
|
|
|
|
|
|
echo "yes" # comment
|
|
|
|
CheckDefFailure([
|
|
|
|
'echo "yes"# comment',
|
|
|
|
], 'E488:')
|
2020-04-16 22:10:49 +02:00
|
|
|
CheckScriptSuccess([
|
|
|
|
'vim9script',
|
|
|
|
'echo "yes" # something',
|
|
|
|
])
|
|
|
|
CheckScriptFailure([
|
|
|
|
'vim9script',
|
|
|
|
'echo "yes"# something',
|
|
|
|
], 'E121:')
|
|
|
|
CheckScriptFailure([
|
|
|
|
'vim9script',
|
|
|
|
'echo# something',
|
|
|
|
], 'E121:')
|
|
|
|
CheckScriptFailure([
|
|
|
|
'echo "yes" # something',
|
|
|
|
], 'E121:')
|
|
|
|
|
2020-04-16 22:54:32 +02:00
|
|
|
exe "echo" # comment
|
|
|
|
CheckDefFailure([
|
|
|
|
'exe "echo"# comment',
|
|
|
|
], 'E488:')
|
|
|
|
CheckScriptSuccess([
|
|
|
|
'vim9script',
|
|
|
|
'exe "echo" # something',
|
|
|
|
])
|
|
|
|
CheckScriptFailure([
|
|
|
|
'vim9script',
|
|
|
|
'exe "echo"# something',
|
|
|
|
], 'E121:')
|
|
|
|
CheckDefFailure([
|
|
|
|
'exe # comment',
|
|
|
|
], 'E1015:')
|
|
|
|
CheckScriptFailure([
|
|
|
|
'vim9script',
|
|
|
|
'exe# something',
|
|
|
|
], 'E121:')
|
|
|
|
CheckScriptFailure([
|
|
|
|
'exe "echo" # something',
|
|
|
|
], 'E121:')
|
|
|
|
|
2020-04-16 22:10:49 +02:00
|
|
|
CheckDefFailure([
|
|
|
|
'try# comment',
|
2020-04-20 19:42:10 +02:00
|
|
|
' echo "yes"',
|
2020-04-16 22:10:49 +02:00
|
|
|
'catch',
|
|
|
|
'endtry',
|
|
|
|
], 'E488:')
|
2020-04-20 19:42:10 +02:00
|
|
|
CheckScriptFailure([
|
|
|
|
'vim9script',
|
|
|
|
'try# comment',
|
|
|
|
'echo "yes"',
|
|
|
|
], 'E488:')
|
2020-04-23 17:07:30 +02:00
|
|
|
CheckDefFailure([
|
|
|
|
'try',
|
|
|
|
' throw#comment',
|
|
|
|
'catch',
|
|
|
|
'endtry',
|
|
|
|
], 'E1015:')
|
|
|
|
CheckDefFailure([
|
|
|
|
'try',
|
|
|
|
' throw "yes"#comment',
|
|
|
|
'catch',
|
|
|
|
'endtry',
|
|
|
|
], 'E488:')
|
2020-04-16 22:10:49 +02:00
|
|
|
CheckDefFailure([
|
|
|
|
'try',
|
2020-04-20 19:42:10 +02:00
|
|
|
' echo "yes"',
|
2020-04-16 22:10:49 +02:00
|
|
|
'catch# comment',
|
|
|
|
'endtry',
|
|
|
|
], 'E488:')
|
2020-04-20 19:42:10 +02:00
|
|
|
CheckScriptFailure([
|
|
|
|
'vim9script',
|
|
|
|
'try',
|
|
|
|
' echo "yes"',
|
|
|
|
'catch# comment',
|
|
|
|
'endtry',
|
|
|
|
], 'E654:')
|
|
|
|
CheckDefFailure([
|
|
|
|
'try',
|
|
|
|
' echo "yes"',
|
|
|
|
'catch /pat/# comment',
|
|
|
|
'endtry',
|
|
|
|
], 'E488:')
|
2020-04-16 22:10:49 +02:00
|
|
|
CheckDefFailure([
|
|
|
|
'try',
|
|
|
|
'echo "yes"',
|
|
|
|
'catch',
|
|
|
|
'endtry# comment',
|
|
|
|
], 'E488:')
|
2020-04-20 19:42:10 +02:00
|
|
|
CheckScriptFailure([
|
|
|
|
'vim9script',
|
|
|
|
'try',
|
|
|
|
' echo "yes"',
|
|
|
|
'catch',
|
|
|
|
'endtry# comment',
|
2020-07-11 22:14:59 +02:00
|
|
|
], 'E488:')
|
2020-04-20 19:42:10 +02:00
|
|
|
|
|
|
|
CheckScriptSuccess([
|
|
|
|
'vim9script',
|
|
|
|
'hi # comment',
|
|
|
|
])
|
|
|
|
CheckScriptFailure([
|
|
|
|
'vim9script',
|
|
|
|
'hi# comment',
|
|
|
|
], 'E416:')
|
2020-04-20 22:42:32 +02:00
|
|
|
CheckScriptSuccess([
|
|
|
|
'vim9script',
|
|
|
|
'hi Search # comment',
|
|
|
|
])
|
|
|
|
CheckScriptFailure([
|
|
|
|
'vim9script',
|
|
|
|
'hi Search# comment',
|
|
|
|
], 'E416:')
|
|
|
|
CheckScriptSuccess([
|
|
|
|
'vim9script',
|
|
|
|
'hi link This Search # comment',
|
|
|
|
])
|
|
|
|
CheckScriptFailure([
|
|
|
|
'vim9script',
|
|
|
|
'hi link This That# comment',
|
|
|
|
], 'E413:')
|
|
|
|
CheckScriptSuccess([
|
|
|
|
'vim9script',
|
|
|
|
'hi clear This # comment',
|
|
|
|
'hi clear # comment',
|
|
|
|
])
|
2020-07-17 20:36:00 +02:00
|
|
|
# not tested, because it doesn't give an error but a warning:
|
|
|
|
# hi clear This# comment',
|
2020-04-20 22:42:32 +02:00
|
|
|
CheckScriptFailure([
|
|
|
|
'vim9script',
|
|
|
|
'hi clear# comment',
|
|
|
|
], 'E416:')
|
|
|
|
|
|
|
|
CheckScriptSuccess([
|
|
|
|
'vim9script',
|
|
|
|
'hi Group term=bold',
|
|
|
|
'match Group /todo/ # comment',
|
|
|
|
])
|
|
|
|
CheckScriptFailure([
|
|
|
|
'vim9script',
|
|
|
|
'hi Group term=bold',
|
|
|
|
'match Group /todo/# comment',
|
|
|
|
], 'E488:')
|
|
|
|
CheckScriptSuccess([
|
|
|
|
'vim9script',
|
|
|
|
'match # comment',
|
|
|
|
])
|
|
|
|
CheckScriptFailure([
|
|
|
|
'vim9script',
|
|
|
|
'match# comment',
|
|
|
|
], 'E475:')
|
|
|
|
CheckScriptSuccess([
|
|
|
|
'vim9script',
|
|
|
|
'match none # comment',
|
|
|
|
])
|
|
|
|
CheckScriptFailure([
|
|
|
|
'vim9script',
|
|
|
|
'match none# comment',
|
|
|
|
], 'E475:')
|
|
|
|
|
|
|
|
CheckScriptSuccess([
|
|
|
|
'vim9script',
|
|
|
|
'menutrans clear # comment',
|
|
|
|
])
|
|
|
|
CheckScriptFailure([
|
|
|
|
'vim9script',
|
|
|
|
'menutrans clear# comment text',
|
|
|
|
], 'E474:')
|
|
|
|
|
|
|
|
CheckScriptSuccess([
|
|
|
|
'vim9script',
|
|
|
|
'syntax clear # comment',
|
|
|
|
])
|
|
|
|
CheckScriptFailure([
|
|
|
|
'vim9script',
|
|
|
|
'syntax clear# comment text',
|
|
|
|
], 'E28:')
|
|
|
|
CheckScriptSuccess([
|
|
|
|
'vim9script',
|
|
|
|
'syntax keyword Word some',
|
|
|
|
'syntax clear Word # comment',
|
|
|
|
])
|
|
|
|
CheckScriptFailure([
|
|
|
|
'vim9script',
|
|
|
|
'syntax keyword Word some',
|
|
|
|
'syntax clear Word# comment text',
|
|
|
|
], 'E28:')
|
|
|
|
|
|
|
|
CheckScriptSuccess([
|
|
|
|
'vim9script',
|
|
|
|
'syntax list # comment',
|
|
|
|
])
|
|
|
|
CheckScriptFailure([
|
|
|
|
'vim9script',
|
|
|
|
'syntax list# comment text',
|
|
|
|
], 'E28:')
|
|
|
|
|
|
|
|
CheckScriptSuccess([
|
|
|
|
'vim9script',
|
|
|
|
'syntax match Word /pat/ oneline # comment',
|
|
|
|
])
|
|
|
|
CheckScriptFailure([
|
|
|
|
'vim9script',
|
|
|
|
'syntax match Word /pat/ oneline# comment',
|
|
|
|
], 'E475:')
|
|
|
|
|
|
|
|
CheckScriptSuccess([
|
|
|
|
'vim9script',
|
|
|
|
'syntax keyword Word word # comm[ent',
|
|
|
|
])
|
|
|
|
CheckScriptFailure([
|
|
|
|
'vim9script',
|
|
|
|
'syntax keyword Word word# comm[ent',
|
|
|
|
], 'E789:')
|
|
|
|
|
|
|
|
CheckScriptSuccess([
|
|
|
|
'vim9script',
|
|
|
|
'syntax match Word /pat/ # comment',
|
|
|
|
])
|
|
|
|
CheckScriptFailure([
|
|
|
|
'vim9script',
|
|
|
|
'syntax match Word /pat/# comment',
|
|
|
|
], 'E402:')
|
|
|
|
|
|
|
|
CheckScriptSuccess([
|
|
|
|
'vim9script',
|
|
|
|
'syntax match Word /pat/ contains=Something # comment',
|
|
|
|
])
|
|
|
|
CheckScriptFailure([
|
|
|
|
'vim9script',
|
|
|
|
'syntax match Word /pat/ contains=Something# comment',
|
|
|
|
], 'E475:')
|
|
|
|
CheckScriptFailure([
|
|
|
|
'vim9script',
|
|
|
|
'syntax match Word /pat/ contains= # comment',
|
|
|
|
], 'E406:')
|
|
|
|
CheckScriptFailure([
|
|
|
|
'vim9script',
|
|
|
|
'syntax match Word /pat/ contains=# comment',
|
|
|
|
], 'E475:')
|
|
|
|
|
|
|
|
CheckScriptSuccess([
|
|
|
|
'vim9script',
|
|
|
|
'syntax region Word start=/pat/ end=/pat/ # comment',
|
|
|
|
])
|
|
|
|
CheckScriptFailure([
|
|
|
|
'vim9script',
|
|
|
|
'syntax region Word start=/pat/ end=/pat/# comment',
|
2020-07-18 18:13:02 +02:00
|
|
|
], 'E402:')
|
2020-04-20 22:42:32 +02:00
|
|
|
|
|
|
|
CheckScriptSuccess([
|
|
|
|
'vim9script',
|
|
|
|
'syntax sync # comment',
|
|
|
|
])
|
|
|
|
CheckScriptFailure([
|
|
|
|
'vim9script',
|
|
|
|
'syntax sync# comment',
|
|
|
|
], 'E404:')
|
|
|
|
CheckScriptSuccess([
|
|
|
|
'vim9script',
|
|
|
|
'syntax sync ccomment # comment',
|
|
|
|
])
|
|
|
|
CheckScriptFailure([
|
|
|
|
'vim9script',
|
|
|
|
'syntax sync ccomment# comment',
|
|
|
|
], 'E404:')
|
|
|
|
|
|
|
|
CheckScriptSuccess([
|
|
|
|
'vim9script',
|
|
|
|
'syntax cluster Some contains=Word # comment',
|
|
|
|
])
|
|
|
|
CheckScriptFailure([
|
|
|
|
'vim9script',
|
|
|
|
'syntax cluster Some contains=Word# comment',
|
|
|
|
], 'E475:')
|
2020-04-23 17:07:30 +02:00
|
|
|
|
|
|
|
CheckScriptSuccess([
|
|
|
|
'vim9script',
|
|
|
|
'command Echo echo # comment',
|
|
|
|
'command Echo # comment',
|
|
|
|
])
|
|
|
|
CheckScriptFailure([
|
|
|
|
'vim9script',
|
|
|
|
'command Echo echo# comment',
|
|
|
|
'Echo',
|
|
|
|
], 'E121:')
|
|
|
|
CheckScriptFailure([
|
|
|
|
'vim9script',
|
|
|
|
'command Echo# comment',
|
|
|
|
], 'E182:')
|
|
|
|
CheckScriptFailure([
|
|
|
|
'vim9script',
|
|
|
|
'command Echo echo',
|
|
|
|
'command Echo# comment',
|
|
|
|
], 'E182:')
|
|
|
|
|
|
|
|
CheckScriptSuccess([
|
|
|
|
'vim9script',
|
|
|
|
'function # comment',
|
|
|
|
])
|
2020-07-29 14:40:25 +02:00
|
|
|
CheckScriptFailure([
|
|
|
|
'vim9script',
|
|
|
|
'function " comment',
|
|
|
|
], 'E129:')
|
2020-04-23 17:07:30 +02:00
|
|
|
CheckScriptFailure([
|
|
|
|
'vim9script',
|
|
|
|
'function# comment',
|
|
|
|
], 'E129:')
|
|
|
|
CheckScriptSuccess([
|
|
|
|
'vim9script',
|
|
|
|
'function CheckScriptSuccess # comment',
|
|
|
|
])
|
|
|
|
CheckScriptFailure([
|
|
|
|
'vim9script',
|
|
|
|
'function CheckScriptSuccess# comment',
|
|
|
|
], 'E488:')
|
|
|
|
|
|
|
|
CheckScriptSuccess([
|
|
|
|
'vim9script',
|
2020-04-27 22:47:51 +02:00
|
|
|
'func g:DeleteMeA()',
|
2020-04-23 17:07:30 +02:00
|
|
|
'endfunc',
|
2020-04-27 22:47:51 +02:00
|
|
|
'delfunction g:DeleteMeA # comment',
|
2020-04-23 17:07:30 +02:00
|
|
|
])
|
|
|
|
CheckScriptFailure([
|
|
|
|
'vim9script',
|
2020-04-27 22:47:51 +02:00
|
|
|
'func g:DeleteMeB()',
|
2020-04-23 17:07:30 +02:00
|
|
|
'endfunc',
|
2020-04-27 22:47:51 +02:00
|
|
|
'delfunction g:DeleteMeB# comment',
|
2020-04-23 17:07:30 +02:00
|
|
|
], 'E488:')
|
|
|
|
|
|
|
|
CheckScriptSuccess([
|
|
|
|
'vim9script',
|
|
|
|
'call execute("ls") # comment',
|
|
|
|
])
|
|
|
|
CheckScriptFailure([
|
|
|
|
'vim9script',
|
|
|
|
'call execute("ls")# comment',
|
|
|
|
], 'E488:')
|
2020-07-22 18:17:08 +02:00
|
|
|
|
|
|
|
CheckScriptFailure([
|
|
|
|
'def Test() " comment',
|
|
|
|
'enddef',
|
|
|
|
], 'E488:')
|
|
|
|
CheckScriptFailure([
|
|
|
|
'vim9script',
|
|
|
|
'def Test() " comment',
|
|
|
|
'enddef',
|
|
|
|
], 'E488:')
|
|
|
|
|
|
|
|
CheckScriptSuccess([
|
|
|
|
'func Test() " comment',
|
|
|
|
'endfunc',
|
|
|
|
])
|
2020-07-29 14:40:25 +02:00
|
|
|
CheckScriptSuccess([
|
2020-07-22 18:17:08 +02:00
|
|
|
'vim9script',
|
|
|
|
'func Test() " comment',
|
|
|
|
'endfunc',
|
2020-07-29 14:40:25 +02:00
|
|
|
])
|
2020-07-22 18:17:08 +02:00
|
|
|
|
|
|
|
CheckScriptSuccess([
|
|
|
|
'def Test() # comment',
|
|
|
|
'enddef',
|
|
|
|
])
|
|
|
|
CheckScriptFailure([
|
|
|
|
'func Test() # comment',
|
|
|
|
'endfunc',
|
|
|
|
], 'E488:')
|
2020-04-20 19:42:10 +02:00
|
|
|
enddef
|
|
|
|
|
|
|
|
def Test_vim9_comment_gui()
|
|
|
|
CheckCanRunGui
|
|
|
|
|
|
|
|
CheckScriptFailure([
|
|
|
|
'vim9script',
|
|
|
|
'gui#comment'
|
|
|
|
], 'E499:')
|
|
|
|
CheckScriptFailure([
|
|
|
|
'vim9script',
|
|
|
|
'gui -f#comment'
|
|
|
|
], 'E499:')
|
2020-04-16 22:10:49 +02:00
|
|
|
enddef
|
|
|
|
|
2020-04-18 19:53:28 +02:00
|
|
|
def Test_vim9_comment_not_compiled()
|
2020-06-20 22:50:47 +02:00
|
|
|
au TabEnter *.vim g:entered = 1
|
|
|
|
au TabEnter *.x g:entered = 2
|
2020-04-18 19:53:28 +02:00
|
|
|
|
|
|
|
edit test.vim
|
|
|
|
doautocmd TabEnter #comment
|
|
|
|
assert_equal(1, g:entered)
|
|
|
|
|
|
|
|
doautocmd TabEnter f.x
|
|
|
|
assert_equal(2, g:entered)
|
|
|
|
|
|
|
|
g:entered = 0
|
|
|
|
doautocmd TabEnter f.x #comment
|
|
|
|
assert_equal(2, g:entered)
|
|
|
|
|
|
|
|
assert_fails('doautocmd Syntax#comment', 'E216:')
|
|
|
|
|
|
|
|
au! TabEnter
|
|
|
|
unlet g:entered
|
2020-04-19 16:28:59 +02:00
|
|
|
|
|
|
|
CheckScriptSuccess([
|
|
|
|
'vim9script',
|
2020-06-20 22:50:47 +02:00
|
|
|
'g:var = 123',
|
2020-06-21 15:52:59 +02:00
|
|
|
'b:var = 456',
|
|
|
|
'w:var = 777',
|
|
|
|
't:var = 888',
|
2020-04-19 16:28:59 +02:00
|
|
|
'unlet g:var w:var # something',
|
|
|
|
])
|
|
|
|
|
|
|
|
CheckScriptFailure([
|
|
|
|
'vim9script',
|
|
|
|
'let g:var = 123',
|
2020-06-21 15:52:59 +02:00
|
|
|
], 'E1016: Cannot declare a global variable:')
|
|
|
|
|
|
|
|
CheckScriptFailure([
|
|
|
|
'vim9script',
|
|
|
|
'let b:var = 123',
|
|
|
|
], 'E1016: Cannot declare a buffer variable:')
|
|
|
|
|
|
|
|
CheckScriptFailure([
|
|
|
|
'vim9script',
|
|
|
|
'let w:var = 123',
|
|
|
|
], 'E1016: Cannot declare a window variable:')
|
|
|
|
|
|
|
|
CheckScriptFailure([
|
|
|
|
'vim9script',
|
|
|
|
'let t:var = 123',
|
|
|
|
], 'E1016: Cannot declare a tab variable:')
|
|
|
|
|
|
|
|
CheckScriptFailure([
|
|
|
|
'vim9script',
|
|
|
|
'let v:version = 123',
|
|
|
|
], 'E1016: Cannot declare a v: variable:')
|
|
|
|
|
|
|
|
CheckScriptFailure([
|
|
|
|
'vim9script',
|
|
|
|
'let $VARIABLE = "text"',
|
|
|
|
], 'E1016: Cannot declare an environment variable:')
|
2020-06-20 22:50:47 +02:00
|
|
|
|
|
|
|
CheckScriptFailure([
|
|
|
|
'vim9script',
|
|
|
|
'g:var = 123',
|
2020-05-14 22:41:15 +02:00
|
|
|
'unlet g:var# comment1',
|
2020-04-19 16:28:59 +02:00
|
|
|
], 'E108:')
|
|
|
|
|
|
|
|
CheckScriptFailure([
|
|
|
|
'let g:var = 123',
|
|
|
|
'unlet g:var # something',
|
|
|
|
], 'E488:')
|
2020-04-20 17:46:14 +02:00
|
|
|
|
|
|
|
CheckScriptSuccess([
|
|
|
|
'vim9script',
|
2020-05-14 22:41:15 +02:00
|
|
|
'if 1 # comment2',
|
2020-04-20 17:46:14 +02:00
|
|
|
' echo "yes"',
|
|
|
|
'elseif 2 #comment',
|
|
|
|
' echo "no"',
|
|
|
|
'endif',
|
|
|
|
])
|
|
|
|
|
|
|
|
CheckScriptFailure([
|
|
|
|
'vim9script',
|
2020-05-14 22:41:15 +02:00
|
|
|
'if 1# comment3',
|
2020-04-20 17:46:14 +02:00
|
|
|
' echo "yes"',
|
|
|
|
'endif',
|
|
|
|
], 'E15:')
|
|
|
|
|
|
|
|
CheckScriptFailure([
|
|
|
|
'vim9script',
|
2020-05-14 22:41:15 +02:00
|
|
|
'if 0 # comment4',
|
2020-04-20 17:46:14 +02:00
|
|
|
' echo "yes"',
|
|
|
|
'elseif 2#comment',
|
|
|
|
' echo "no"',
|
|
|
|
'endif',
|
|
|
|
], 'E15:')
|
|
|
|
|
|
|
|
CheckScriptSuccess([
|
|
|
|
'vim9script',
|
2020-05-14 22:41:15 +02:00
|
|
|
'let v = 1 # comment5',
|
2020-04-20 17:46:14 +02:00
|
|
|
])
|
|
|
|
|
|
|
|
CheckScriptFailure([
|
|
|
|
'vim9script',
|
2020-05-14 22:41:15 +02:00
|
|
|
'let v = 1# comment6',
|
|
|
|
], 'E15:')
|
2020-04-20 17:46:14 +02:00
|
|
|
|
|
|
|
CheckScriptSuccess([
|
|
|
|
'vim9script',
|
|
|
|
'new'
|
2020-09-06 15:58:36 +02:00
|
|
|
'setline(1, ["# define pat", "last"])',
|
2020-06-22 23:02:51 +02:00
|
|
|
':$',
|
2020-04-20 17:46:14 +02:00
|
|
|
'dsearch /pat/ #comment',
|
|
|
|
'bwipe!',
|
|
|
|
])
|
|
|
|
|
2020-07-17 20:36:00 +02:00
|
|
|
CheckScriptFailure([
|
|
|
|
'vim9script',
|
|
|
|
'new'
|
2020-09-06 15:58:36 +02:00
|
|
|
'setline(1, ["# define pat", "last"])',
|
2020-07-17 20:36:00 +02:00
|
|
|
':$',
|
|
|
|
'dsearch /pat/#comment',
|
|
|
|
'bwipe!',
|
|
|
|
], 'E488:')
|
|
|
|
|
|
|
|
CheckScriptFailure([
|
|
|
|
'vim9script',
|
|
|
|
'func! SomeFunc()',
|
|
|
|
], 'E477:')
|
2020-04-18 19:53:28 +02:00
|
|
|
enddef
|
|
|
|
|
2020-05-10 21:20:29 +02:00
|
|
|
def Test_finish()
|
|
|
|
let lines =<< trim END
|
|
|
|
vim9script
|
2020-06-20 22:50:47 +02:00
|
|
|
g:res = 'one'
|
2020-05-10 21:20:29 +02:00
|
|
|
if v:false | finish | endif
|
2020-06-20 22:50:47 +02:00
|
|
|
g:res = 'two'
|
2020-05-10 21:20:29 +02:00
|
|
|
finish
|
2020-06-20 22:50:47 +02:00
|
|
|
g:res = 'three'
|
2020-05-10 21:20:29 +02:00
|
|
|
END
|
|
|
|
writefile(lines, 'Xfinished')
|
|
|
|
source Xfinished
|
|
|
|
assert_equal('two', g:res)
|
|
|
|
|
|
|
|
unlet g:res
|
|
|
|
delete('Xfinished')
|
|
|
|
enddef
|
|
|
|
|
2020-05-14 22:41:15 +02:00
|
|
|
def Test_let_func_call()
|
|
|
|
let lines =<< trim END
|
|
|
|
vim9script
|
|
|
|
func GetValue()
|
|
|
|
if exists('g:count')
|
|
|
|
let g:count += 1
|
|
|
|
else
|
|
|
|
let g:count = 1
|
|
|
|
endif
|
|
|
|
return 'this'
|
|
|
|
endfunc
|
|
|
|
let val: string = GetValue()
|
2020-07-17 20:36:00 +02:00
|
|
|
# env var is always a string
|
2020-05-16 22:33:33 +02:00
|
|
|
let env = $TERM
|
2020-05-14 22:41:15 +02:00
|
|
|
END
|
|
|
|
writefile(lines, 'Xfinished')
|
|
|
|
source Xfinished
|
2020-07-17 20:36:00 +02:00
|
|
|
# GetValue() is not called during discovery phase
|
2020-05-14 22:41:15 +02:00
|
|
|
assert_equal(1, g:count)
|
|
|
|
|
|
|
|
unlet g:count
|
|
|
|
delete('Xfinished')
|
|
|
|
enddef
|
|
|
|
|
|
|
|
def Test_let_missing_type()
|
|
|
|
let lines =<< trim END
|
2020-05-16 22:33:33 +02:00
|
|
|
vim9script
|
|
|
|
let var = g:unknown
|
2020-05-15 18:17:28 +02:00
|
|
|
END
|
2020-05-24 23:00:18 +02:00
|
|
|
CheckScriptFailure(lines, 'E121:')
|
2020-05-15 18:17:28 +02:00
|
|
|
|
|
|
|
lines =<< trim END
|
|
|
|
vim9script
|
|
|
|
let nr: number = 123
|
|
|
|
let var = nr
|
|
|
|
END
|
2020-05-24 23:00:18 +02:00
|
|
|
CheckScriptSuccess(lines)
|
2020-05-14 22:41:15 +02:00
|
|
|
enddef
|
|
|
|
|
2020-06-13 18:09:19 +02:00
|
|
|
def Test_let_declaration()
|
|
|
|
let lines =<< trim END
|
|
|
|
vim9script
|
|
|
|
let var: string
|
|
|
|
g:var_uninit = var
|
|
|
|
var = 'text'
|
|
|
|
g:var_test = var
|
2020-07-17 20:36:00 +02:00
|
|
|
# prefixing s: is optional
|
2020-06-14 12:50:24 +02:00
|
|
|
s:var = 'prefixed'
|
|
|
|
g:var_prefixed = s:var
|
|
|
|
|
|
|
|
let s:other: number
|
|
|
|
other = 1234
|
|
|
|
g:other_var = other
|
2020-08-15 14:31:20 +02:00
|
|
|
|
|
|
|
# type is inferred
|
|
|
|
s:dict = {'a': 222}
|
|
|
|
def GetDictVal(key: any)
|
|
|
|
g:dict_val = s:dict[key]
|
|
|
|
enddef
|
|
|
|
GetDictVal('a')
|
2020-06-13 18:09:19 +02:00
|
|
|
END
|
|
|
|
CheckScriptSuccess(lines)
|
|
|
|
assert_equal('', g:var_uninit)
|
|
|
|
assert_equal('text', g:var_test)
|
2020-06-14 12:50:24 +02:00
|
|
|
assert_equal('prefixed', g:var_prefixed)
|
|
|
|
assert_equal(1234, g:other_var)
|
2020-08-15 14:31:20 +02:00
|
|
|
assert_equal(222, g:dict_val)
|
2020-06-13 18:09:19 +02:00
|
|
|
|
|
|
|
unlet g:var_uninit
|
|
|
|
unlet g:var_test
|
2020-06-14 12:50:24 +02:00
|
|
|
unlet g:var_prefixed
|
|
|
|
unlet g:other_var
|
2020-06-13 18:09:19 +02:00
|
|
|
enddef
|
|
|
|
|
2020-06-18 22:43:27 +02:00
|
|
|
def Test_let_declaration_fails()
|
|
|
|
let lines =<< trim END
|
|
|
|
vim9script
|
|
|
|
const var: string
|
|
|
|
END
|
|
|
|
CheckScriptFailure(lines, 'E1021:')
|
|
|
|
|
|
|
|
lines =<< trim END
|
|
|
|
vim9script
|
|
|
|
let 9var: string
|
|
|
|
END
|
|
|
|
CheckScriptFailure(lines, 'E475:')
|
|
|
|
enddef
|
|
|
|
|
2020-06-13 19:00:10 +02:00
|
|
|
def Test_let_type_check()
|
|
|
|
let lines =<< trim END
|
|
|
|
vim9script
|
|
|
|
let var: string
|
|
|
|
var = 1234
|
|
|
|
END
|
2020-08-15 16:33:28 +02:00
|
|
|
CheckScriptFailure(lines, 'E1012:')
|
2020-06-14 12:50:24 +02:00
|
|
|
|
|
|
|
lines =<< trim END
|
|
|
|
vim9script
|
|
|
|
let var:string
|
|
|
|
END
|
|
|
|
CheckScriptFailure(lines, 'E1069:')
|
2020-06-18 22:43:27 +02:00
|
|
|
|
|
|
|
lines =<< trim END
|
|
|
|
vim9script
|
|
|
|
let var: asdf
|
|
|
|
END
|
|
|
|
CheckScriptFailure(lines, 'E1010:')
|
2020-08-05 15:11:03 +02:00
|
|
|
|
|
|
|
lines =<< trim END
|
|
|
|
vim9script
|
|
|
|
let s:l: list<number>
|
|
|
|
s:l = []
|
|
|
|
END
|
|
|
|
CheckScriptSuccess(lines)
|
|
|
|
|
|
|
|
lines =<< trim END
|
|
|
|
vim9script
|
|
|
|
let s:d: dict<number>
|
|
|
|
s:d = {}
|
|
|
|
END
|
|
|
|
CheckScriptSuccess(lines)
|
2020-06-13 19:00:10 +02:00
|
|
|
enddef
|
|
|
|
|
2020-09-16 15:22:00 +02:00
|
|
|
let g:dict_number = #{one: 1, two: 2}
|
|
|
|
|
|
|
|
def Test_let_list_dict_type()
|
|
|
|
let ll: list<number>
|
|
|
|
ll = [1, 2, 2, 3, 3, 3]->uniq()
|
|
|
|
ll->assert_equal([1, 2, 3])
|
|
|
|
|
|
|
|
let dd: dict<number>
|
|
|
|
dd = g:dict_number
|
|
|
|
dd->assert_equal(g:dict_number)
|
|
|
|
|
|
|
|
let lines =<< trim END
|
|
|
|
let ll: list<number>
|
|
|
|
ll = [1, 2, 3]->map('"one"')
|
|
|
|
END
|
|
|
|
CheckDefExecFailure(lines, 'E1012: Type mismatch; expected list<number> but got list<string>')
|
|
|
|
enddef
|
|
|
|
|
2020-05-14 23:20:55 +02:00
|
|
|
def Test_forward_declaration()
|
|
|
|
let lines =<< trim END
|
|
|
|
vim9script
|
|
|
|
def GetValue(): string
|
|
|
|
return theVal
|
|
|
|
enddef
|
|
|
|
let theVal = 'something'
|
2020-05-24 23:00:18 +02:00
|
|
|
g:initVal = GetValue()
|
2020-05-14 23:20:55 +02:00
|
|
|
theVal = 'else'
|
|
|
|
g:laterVal = GetValue()
|
|
|
|
END
|
|
|
|
writefile(lines, 'Xforward')
|
|
|
|
source Xforward
|
|
|
|
assert_equal('something', g:initVal)
|
|
|
|
assert_equal('else', g:laterVal)
|
|
|
|
|
|
|
|
unlet g:initVal
|
|
|
|
unlet g:laterVal
|
|
|
|
delete('Xforward')
|
|
|
|
enddef
|
|
|
|
|
2020-06-11 23:10:46 +02:00
|
|
|
def Test_source_vim9_from_legacy()
|
|
|
|
let legacy_lines =<< trim END
|
|
|
|
source Xvim9_script.vim
|
|
|
|
|
|
|
|
call assert_false(exists('local'))
|
|
|
|
call assert_false(exists('exported'))
|
|
|
|
call assert_false(exists('s:exported'))
|
|
|
|
call assert_equal('global', global)
|
|
|
|
call assert_equal('global', g:global)
|
|
|
|
|
|
|
|
" imported variable becomes script-local
|
|
|
|
import exported from './Xvim9_script.vim'
|
|
|
|
call assert_equal('exported', s:exported)
|
|
|
|
call assert_false(exists('exported'))
|
|
|
|
|
|
|
|
" imported function becomes script-local
|
|
|
|
import GetText from './Xvim9_script.vim'
|
|
|
|
call assert_equal('text', s:GetText())
|
|
|
|
call assert_false(exists('*GetText'))
|
|
|
|
END
|
|
|
|
writefile(legacy_lines, 'Xlegacy_script.vim')
|
|
|
|
|
|
|
|
let vim9_lines =<< trim END
|
|
|
|
vim9script
|
|
|
|
let local = 'local'
|
|
|
|
g:global = 'global'
|
|
|
|
export let exported = 'exported'
|
|
|
|
export def GetText(): string
|
|
|
|
return 'text'
|
|
|
|
enddef
|
|
|
|
END
|
|
|
|
writefile(vim9_lines, 'Xvim9_script.vim')
|
|
|
|
|
|
|
|
source Xlegacy_script.vim
|
|
|
|
|
|
|
|
assert_equal('global', g:global)
|
2020-07-17 20:36:00 +02:00
|
|
|
unlet g:global
|
2020-06-11 23:10:46 +02:00
|
|
|
|
|
|
|
delete('Xlegacy_script.vim')
|
|
|
|
delete('Xvim9_script.vim')
|
|
|
|
enddef
|
2020-05-14 23:20:55 +02:00
|
|
|
|
2020-08-14 20:52:28 +02:00
|
|
|
func Test_vim9script_not_global()
|
|
|
|
" check that items defined in Vim9 script are script-local, not global
|
|
|
|
let vim9lines =<< trim END
|
|
|
|
vim9script
|
|
|
|
let var = 'local'
|
|
|
|
func TheFunc()
|
|
|
|
echo 'local'
|
|
|
|
endfunc
|
|
|
|
def DefFunc()
|
|
|
|
echo 'local'
|
|
|
|
enddef
|
|
|
|
END
|
|
|
|
call writefile(vim9lines, 'Xvim9script.vim')
|
|
|
|
source Xvim9script.vim
|
|
|
|
try
|
|
|
|
echo g:var
|
|
|
|
assert_report('did not fail')
|
|
|
|
catch /E121:/
|
|
|
|
" caught
|
|
|
|
endtry
|
|
|
|
try
|
|
|
|
call TheFunc()
|
|
|
|
assert_report('did not fail')
|
|
|
|
catch /E117:/
|
|
|
|
" caught
|
|
|
|
endtry
|
|
|
|
try
|
|
|
|
call DefFunc()
|
|
|
|
assert_report('did not fail')
|
|
|
|
catch /E117:/
|
|
|
|
" caught
|
|
|
|
endtry
|
|
|
|
|
2020-08-30 12:54:53 +02:00
|
|
|
call delete('Xvim9script.vim')
|
2020-08-14 20:52:28 +02:00
|
|
|
endfunc
|
|
|
|
|
2020-07-04 17:39:10 +02:00
|
|
|
def Test_vim9_copen()
|
|
|
|
# this was giving an error for setting w:quickfix_title
|
|
|
|
copen
|
|
|
|
quit
|
|
|
|
enddef
|
|
|
|
|
2020-07-25 19:30:59 +02:00
|
|
|
" test using a vim9script that is auto-loaded from an autocmd
|
|
|
|
def Test_vim9_autoload()
|
|
|
|
let lines =<< trim END
|
|
|
|
vim9script
|
|
|
|
def foo#test()
|
|
|
|
echomsg getreg('"')
|
|
|
|
enddef
|
|
|
|
END
|
|
|
|
|
|
|
|
mkdir('Xdir/autoload', 'p')
|
|
|
|
writefile(lines, 'Xdir/autoload/foo.vim')
|
|
|
|
let save_rtp = &rtp
|
|
|
|
exe 'set rtp^=' .. getcwd() .. '/Xdir'
|
|
|
|
augroup test
|
|
|
|
autocmd TextYankPost * call foo#test()
|
|
|
|
augroup END
|
|
|
|
|
|
|
|
normal Y
|
|
|
|
|
|
|
|
augroup test
|
|
|
|
autocmd!
|
|
|
|
augroup END
|
|
|
|
delete('Xdir', 'rf')
|
|
|
|
&rtp = save_rtp
|
|
|
|
enddef
|
|
|
|
|
2020-08-21 21:55:43 +02:00
|
|
|
def Test_script_var_in_autocmd()
|
|
|
|
# using a script variable from an autocommand, defined in a :def function in a
|
|
|
|
# legacy Vim script, cannot check the variable type.
|
|
|
|
let lines =<< trim END
|
|
|
|
let s:counter = 1
|
|
|
|
def s:Func()
|
|
|
|
au! CursorHold
|
|
|
|
au CursorHold * s:counter += 1
|
|
|
|
enddef
|
|
|
|
call s:Func()
|
|
|
|
doau CursorHold
|
|
|
|
call assert_equal(2, s:counter)
|
|
|
|
au! CursorHold
|
|
|
|
END
|
|
|
|
CheckScriptSuccess(lines)
|
|
|
|
enddef
|
|
|
|
|
2020-08-09 14:33:55 +02:00
|
|
|
def Test_cmdline_win()
|
|
|
|
# if the Vim syntax highlighting uses Vim9 constructs they can be used from
|
|
|
|
# the command line window.
|
|
|
|
mkdir('rtp/syntax', 'p')
|
|
|
|
let export_lines =<< trim END
|
|
|
|
vim9script
|
|
|
|
export let That = 'yes'
|
|
|
|
END
|
|
|
|
writefile(export_lines, 'rtp/syntax/Xexport.vim')
|
|
|
|
let import_lines =<< trim END
|
|
|
|
vim9script
|
|
|
|
import That from './Xexport.vim'
|
|
|
|
END
|
|
|
|
writefile(import_lines, 'rtp/syntax/vim.vim')
|
|
|
|
let save_rtp = &rtp
|
|
|
|
&rtp = getcwd() .. '/rtp' .. ',' .. &rtp
|
|
|
|
syntax on
|
|
|
|
augroup CmdWin
|
|
|
|
autocmd CmdwinEnter * g:got_there = 'yes'
|
|
|
|
augroup END
|
|
|
|
# this will open and also close the cmdline window
|
|
|
|
feedkeys('q:', 'xt')
|
|
|
|
assert_equal('yes', g:got_there)
|
|
|
|
|
|
|
|
augroup CmdWin
|
|
|
|
au!
|
|
|
|
augroup END
|
|
|
|
&rtp = save_rtp
|
|
|
|
delete('rtp', 'rf')
|
|
|
|
enddef
|
|
|
|
|
2020-08-29 13:39:17 +02:00
|
|
|
def Test_invalid_sid()
|
|
|
|
assert_fails('func <SNR>1234_func', 'E123:')
|
2020-08-30 12:54:53 +02:00
|
|
|
|
2020-08-29 13:39:17 +02:00
|
|
|
if RunVim([], ['wq Xdidit'], '+"func <SNR>1_func"')
|
2020-09-06 15:58:36 +02:00
|
|
|
assert_equal([], readfile('Xdidit'))
|
2020-08-29 13:39:17 +02:00
|
|
|
endif
|
|
|
|
delete('Xdidit')
|
|
|
|
enddef
|
|
|
|
|
2020-09-13 18:57:47 +02:00
|
|
|
def Test_unset_any_variable()
|
|
|
|
let lines =<< trim END
|
|
|
|
let var: any
|
|
|
|
assert_equal(0, var)
|
|
|
|
END
|
|
|
|
CheckDefAndScriptSuccess(lines)
|
|
|
|
enddef
|
|
|
|
|
2020-04-02 22:33:21 +02:00
|
|
|
" Keep this last, it messes up highlighting.
|
|
|
|
def Test_substitute_cmd()
|
|
|
|
new
|
|
|
|
setline(1, 'something')
|
|
|
|
:substitute(some(other(
|
|
|
|
assert_equal('otherthing', getline(1))
|
|
|
|
bwipe!
|
|
|
|
|
2020-07-17 20:36:00 +02:00
|
|
|
# also when the context is Vim9 script
|
2020-04-02 22:33:21 +02:00
|
|
|
let lines =<< trim END
|
|
|
|
vim9script
|
|
|
|
new
|
|
|
|
setline(1, 'something')
|
|
|
|
:substitute(some(other(
|
|
|
|
assert_equal('otherthing', getline(1))
|
|
|
|
bwipe!
|
|
|
|
END
|
|
|
|
writefile(lines, 'Xvim9lines')
|
|
|
|
source Xvim9lines
|
|
|
|
|
|
|
|
delete('Xvim9lines')
|
|
|
|
enddef
|
|
|
|
|
2020-01-26 15:56:19 +01:00
|
|
|
" vim: ts=8 sw=2 sts=2 expandtab tw=80 fdm=marker
|