Lines Matching refs:get
319 call assert_equal(Func, get(Cb, 'func'))
320 call assert_equal('MyDictFunc', get(Cb, 'name'))
321 call assert_equal(args, get(Cb, 'args'))
322 call assert_equal(dict, get(Cb, 'dict'))
323 call assert_fails('call get(Cb, "xxx")', 'E475:')
325 call assert_equal(Func, get(Func, 'func'))
326 call assert_equal('MyDictFunc', get(Func, 'name'))
327 call assert_equal([], get(Func, 'args'))
328 call assert_true(empty( get(Func, 'dict')))
332 call assert_equal(dict, get(P, 'dict', dict))
333 call assert_equal(0, get(l:P, 'dict'))
346 let F1 = get(d1, 'f1')
347 let F2 = get(d1, 'f2')