Lines Matching refs:undefined
24 function f1() { return undefined; }
33 function f4() { return void 0 == undefined; }
36 function f5() { return undefined == void 0; }
39 function f6() { return "" + undefined; }
40 test("undefined", f6);
45 function f8() { return void 0 === undefined; }
48 function f9() { return undefined === void 0; }
67 test("undefined", g6);
78 testThrows(function() { undefined = 111; });
80 function h1() { return undefined; }
89 function h4() { return void 0 == undefined; }
92 function h5() { return undefined == void 0; }
95 function h6() { return "" + undefined; }
96 test("undefined", h6);
101 function h8() { return void 0 === undefined; }
104 function h9() { return undefined === void 0; }
115 function k3() { return this === undefined; }
125 test("undefined", k6);
138 function m1() { return this.undefined; }
144 function m3() { return this === undefined; }
147 function m4() { return void 0 === this.undefined; }
150 function m5() { return this.undefined == void 0; }
153 function m6() { return "" + this.undefined; }
159 function m8() { return void 0 === this.undefined; }
162 function m9() { return this.undefined === void 0; }