Sign in
webkit
/
WebKit
/
8811b522c4d9fd9fbebc2e2caf8f1ebff78163f9
/
.
/
JSTests
/
es6
/
Set_constructor_invokes_add.js
blob: 21f2676a8fe095f891513f037752eeac5e6aa20b [
file
] [
log
] [
blame
]
function
test
()
{
var
passed
=
false
;
var
_add
=
Set
.
prototype
.
add
;
Set
.
prototype
.
add
=
function
(
v
)
{
passed
=
true
;
};
new
Set
([
1
]);
Set
.
prototype
.
add
=
_add
;
return
passed
;
}
if
(!
test
())
throw
new
Error
(
"Test failed"
);