• Home
  • Raw
  • Download

Lines Matching refs:call

23   assertTrue(Array.prototype.includes.call(arrayLike, "c"));
35 assertTrue(Array.prototype.includes.call(arrayLike1, "a"));
36 assertFalse(Array.prototype.includes.call(arrayLike1, "c"));
45 assertTrue(Array.prototype.includes.call(arrayLike2, "b"));
46 assertFalse(Array.prototype.includes.call(arrayLike2, "c"));
53 Array.prototype.includes.call(null, "a");
57 Array.prototype.includes.call(undefined, "a");
80 Array.prototype.includes.call(trappedZero, "a");
97 Array.prototype.includes.call(trappedZero, "a", Symbol());
122 Array.prototype.includes.call(trappedZero, "a", fromIndex);
149 Array.prototype.includes.call(throwingLength, "a", fromIndexTrap);
172 Array.prototype.includes.call(badLength, "a", fromIndexTrap);
201 Array.prototype.includes.call(badLength, "a", fromIndexTrap);
224 assertTrue(Array.prototype.includes.call(arrayLike, "1"));
225 assertTrue(Array.prototype.includes.call(arrayLike, "2"));
247 assertFalse(Array.prototype.includes.call(arrayLikeWithTrap, "c", 2));
248 assertFalse(Array.prototype.includes.call(arrayLikeWithTrap, "c", 3));
271 assertTrue(Array.prototype.includes.call(arrayLike, "a", -4));
272 assertTrue(Array.prototype.includes.call(arrayLike, "b", -4));
295 assertTrue(Array.prototype.includes.call(arrayLike, "b", -1));
296 assertFalse(Array.prototype.includes.call(arrayLike, "a", -1));
297 assertTrue(Array.prototype.includes.call(arrayLike, "a", -2));
317 assertFalse(Array.prototype.includes.call(arrayLikeWithTraps, "c", 2.1));
318 assertFalse(Array.prototype.includes.call(arrayLikeWithTraps, "c", +Infinity));
335 assertTrue(Array.prototype.includes.call(arrayLikeWithTrapAfterZero, "a", NaN));
386 assertTrue(Array.prototype.includes.call(oneHole, "c"));
414 assertTrue(Array.prototype.includes.call(arrayLike, "a"));
430 assertFalse(Array.prototype.includes.call(arrayLikeWithTraps, "a"));
437 assertFalse(Array.prototype.includes.call({
441 assertFalse(Array.prototype.includes.call({
445 assertFalse(Array.prototype.includes.call({
449 assertFalse(Array.prototype.includes.call({
453 assertFalse(Array.prototype.includes.call({
458 assertFalse(Array.prototype.includes.call({
463 assertFalse(Array.prototype.includes.call({
476 assertFalse(Array.prototype.includes.call(arrayLikeWithTrap, 2));
484 assertFalse(Array.prototype.includes.call({
488 assertTrue(Array.prototype.includes.call({
493 assertTrue(Array.prototype.includes.call({
498 assertFalse(Array.prototype.includes.call({
513 Array.prototype.includes.call(arrayLikeWithTrap, "a", fromIndexForLargeIndexTests)
522 Array.prototype.includes.call(arrayLikeWithTooBigLength, "a", fromIndexForLargeIndexTests)
534 assertFalse(Array.prototype.includes.call({
538 assertFalse(Array.prototype.includes.call({
542 assertFalse(Array.prototype.includes.call({
546 assertFalse(Array.prototype.includes.call({
550 assertFalse(Array.prototype.includes.call({
555 assertFalse(Array.prototype.includes.call({
560 assertFalse(Array.prototype.includes.call({
565 assertFalse(Array.prototype.includes.call({
578 Array.prototype.includes.call(arrayLikeWithTrap);
588 Array.prototype.includes.call({
628 assertFalse(Array.prototype.includes.call(arrayLike, "c"));
661 assertFalse(Array.prototype.includes.call(arrayLike, "c"));
667 assertTrue(Array.prototype.includes.call(new Uint8Array([1, 2, 3]), 2));
670 Array.prototype.includes.call(new Float32Array([2.5, 3.14, Math.PI]), 3.1415927410125732)
673 assertFalse(Array.prototype.includes.call(new Uint8Array([1, 2, 3]), 4));
674 assertFalse(Array.prototype.includes.call(new Uint8Array([1, 2, 3]), 2, 2));