Lines Matching refs:f1
293 func! dict1.f1()
296 let dict1.f2 = function(dict1.f1, dict1)
298 call assert_equal('dict1', dict1.f1())
299 call assert_equal('dict1', dict1['f1']())
304 let dict2.f1 = dict1.f1
307 call assert_equal('dict2', dict2.f1())
308 call assert_equal('dict2', dict2['f1']())
340 function d1.f1() dict
346 let F1 = get(d1, 'f1')
356 let d3 = {'f1': F1, 'f2': F2}
396 call assert_true(d1.f1 isnot# d1.f1) " handle_subscript creates new partial each time