Lines Matching refs:undefined
134 return (key == name) ? undefined : value;
144 assertEquals([1, undefined, 3], JSON.parse("[1, 2, 3]", GetFilter(1)));
145 assertEquals([1, 2, undefined], JSON.parse("[1, 2, 3]", GetFilter(2)));
296 assertEquals(undefined, JSON.stringify(undefined));
297 assertEquals(undefined, JSON.stringify(function () { }));
298 // Arrays with missing, undefined or function elements have those elements
301 JSON.stringify([undefined,,function(){}]));
303 // Objects with undefined or function properties (including replaced properties)
306 JSON.stringify({a: undefined, b: function(){}, c: 42, d: 42},
307 function(k, v) { if (k == "c") return undefined;