blob: cd674a8ba99b6f3da1ab26bc2f666b26f762a00f [file] [log] [blame]
load(libdir + "asserts.js");
// Throw a TypeError if the trap does not return an object
var handler = { ownKeys: () => undefined };
for (let p of [new Proxy({}, handler), Proxy.revocable({}, handler).proxy])
assertThrowsInstanceOf(() => Object.getOwnPropertyNames(p), TypeError);