Lines Matching refs:undefined
24 t.deepEqual(func(), [undefined, undefined, undefined], 'unbound func with too few args');
25 t.deepEqual(func(1, 2), [undefined, 1, 2], 'unbound func with right args');
26 t.deepEqual(func(1, 2, 3), [undefined, 1, 2], 'unbound func with too many args');
30 t.deepEqual(bound(), [undefined, undefined, undefined], 'bound func with too few args');
31 t.deepEqual(bound(1, 2), [1, 2, undefined], 'bound func with right args');
36 …t.deepEqual(boundR(), [sentinel, undefined, undefined], 'bound func with receiver, with too few ar…
42 …t.deepEqual(boundArg(), [sentinel, 1, undefined], 'bound func with receiver and arg, with too few …
48 st.deepEqual(aBound(sentinel), [sentinel, undefined, undefined], 'apply-bound func with no args');
49 …st.deepEqual(aBound(sentinel, [1], 4), [sentinel, 1, undefined], 'apply-bound func with too few ar…
55 …st.deepEqual(aBoundArg(sentinel, [1], 4), [sentinel, 1, undefined], 'apply-bound func with too few…
60 …st.deepEqual(aBoundR([1], 4), [sentinel, 1, undefined], 'apply-bound func with receiver and too fe…