Lines Matching refs:d1
337 let d1 = {}
340 function d1.f1() dict
343 function d1.f2() dict
346 let F1 = get(d1, 'f1')
347 let F2 = get(d1, 'f2')
349 let F1d1 = function(F1, d1)
358 let F1ad1 = function(F1, [d1])
383 call assert_false(F1d1 != F1d3) " Equal dictionaries, even though d1 isnot d3
388 call assert_true(F1d1 isnot# F1d3) " d1 isnot d3, even though d1 == d3
391 call assert_true(F1ad1 isnot# F1ad3) " In arguments d1 isnot d3
396 call assert_true(d1.f1 isnot# d1.f1) " handle_subscript creates new partial each time