4 __generic: function (t, a) {
5 a(t.call(this, this[1]), true, "Contains");
6 a(t.call(this, {}), false, "Does Not contain");
13 a(t.call(o, 1), true, "First");
14 a(t.call(o, '1'), false, "Type coercion");
15 a(t.call(o, 'raz'), true, "Primitive");
16 a(t.call(o, 'foo'), false, "Primitive not found");
17 a(t.call(o, x), true, "Object found");
18 a(t.call(o, y), false, "Object not found");
19 a(t.call(o, 1, 1), false, "Position");