Sign in
webkit
/
WebKit
/
184a076f7576d574562c127420f793420f5d31fe
/
.
/
JSTests
/
es6
/
Map_Map[Symbol.species].js
blob: 2a4a4a095b2572cc4fa66a45c8746c1420daa402 [
file
] [
log
] [
blame
]
function
test
()
{
var
prop
=
Object
.
getOwnPropertyDescriptor
(
Map
,
Symbol
.
species
);
return
'get'
in prop
&&
Map
[
Symbol
.
species
]
===
Map
;
}
if
(!
test
())
throw
new
Error
(
"Test failed"
);