Home | History | Annotate | Download | only in regress

Lines Matching defs:strict

24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 // undefined as the receiver (which for non-strict functions is
36 function strict(){ "use strict"; assertEquals(void 0, this); }
37 function strict_null(){ "use strict"; assertEquals(null, this); }
40 [2, 3].reduce(strict);
42 [2, 3].reduceRight(strict);
49 [2, 3].every(strict);
50 [2, 3].every(strict, undefined);
56 [2, 3].filter(strict);
57 [2, 3].filter(strict, undefined);
63 [2, 3].forEach(strict);
64 [2, 3].forEach(strict, undefined);
70 [2, 3].map(strict);
71 [2, 3].map(strict, undefined);
77 [2, 3].some(strict);
78 [2, 3].some(strict, undefined);