Sign in
webkit
/
WebKit
/
d79f7faf1741e287395091ba9e177bbe8eb04d43
/
.
/
JSTests
/
es6
/
Map_constructor_accepts_null.js
blob: e31e89ebd3ee317b7576faca105b5801517f017d [
file
] [
log
] [
blame
]
ggaren@apple.com
961dc37
2015-09-04 02:39:20 +0000
[
diff
] [
blame
]
1
function
test
()
{
2
3
new
Map
(
null
);
4
return
true
;
5
6
}
7
8
if
(!
test
())
9
throw
new
Error
(
"Test failed"
);
10