blob: 21df66c270bce2280c7044f1c8f09b754dc841fa [file] [log] [blame]
function test() {
// JSON.stringify -> Get -> [[Get]]
var get = [];
var p = new Proxy({}, { get: function(o, k) { get.push(k); return o[k]; }});
JSON.stringify(p);
return get + '' === "toJSON";
}
if (!test())
throw new Error("Test failed");