Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
1 function f() {
2 var x = undefined;
3 try {
4 [1, 2, 3].map(x);
5 assertEq(0, 1);
6 } catch(e) {
7 assertEq(e.toString().contains("x is not"), true);
8 }
10 try {
11 [1, 2, 3].filter(x, 1, 2);
12 assertEq(0, 1);
13 } catch(e) {
14 assertEq(e.toString().contains("x is not"), true);
15 }
16 }
17 f();