Sign in
webkit
/
WebKit
/
9f8388ebdf099a98ce75d93c131e5941dc4da269
/
.
/
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
;