Lines Matching refs:F1
346 let F1 = get(d1, 'f1')
349 let F1d1 = function(F1, d1)
353 let F1a1 = function(F1, [1])
354 let F1a2 = function(F1, [2])
355 let F1d2 = function(F1, d2)
356 let d3 = {'f1': F1, 'f2': F2}
357 let F1d3 = function(F1, d3)
358 let F1ad1 = function(F1, [d1])
359 let F1ad3 = function(F1, [d3])
361 call assert_match('^function(''\d\+'')$', string(F1)) " Not a partial
368 let X = F1
369 call assert_false(F1 != X) " same function
377 call assert_true(F1 != F2) " Different functions
378 call assert_true(F1 != F1d1) " Partial /= non-partial
386 call assert_true(F1 isnot# F2) " Different functions
387 call assert_true(F1 isnot# F1d1) " Partial /= non-partial
394 call assert_true(F1 isnot# F2) " Different functions
395 call assert_true(F1 isnot# F1d1) " Partial /= non-partial
405 call assert_false(N1 == F1)
406 call assert_false(F1 is N1)