haikuwebkit/JSTests/es6/Map_Map[Symbol.species].js

11 lines
197 B
JavaScript

function test() {
var prop = Object.getOwnPropertyDescriptor(Map, Symbol.species);
return 'get' in prop && Map[Symbol.species] === Map;
}
if (!test())
throw new Error("Test failed");