Sign in
webkit
/
WebKit
/
1f5bafe5ae87a22fbc029b76fb26b628be327746
/
.
/
JSTests
/
stress
/
freeze-setter.js
blob: e43caf1d26340c1c67519838453fc8cb7992724e [
file
] [
log
] [
blame
]
//@ runDefault
"use strict"
;
let x
;
let o
=
{
set
foo
(
value
)
{
x
=
value
;
}
};
Object
.
freeze
(
o
);
o
.
foo
=
42
;
if
(
x
!=
42
)
throw
"Error: bad result: "
+
x
;