Sign in
webkit
/
WebKit
/
10627ba484528fed3e7358b1801250bb004c8a99
/
.
/
JSTests
/
es6
/
class_accessor_properties.js
blob: 2bc3d07bc3c10caf022b27003b215d48b4a6f9c3 [
file
] [
log
] [
blame
]
function
test
()
{
var
baz
=
false
;
class
C
{
get
foo
()
{
return
"foo"
;
}
set
bar
(
x
)
{
baz
=
x
;
}
}
new
C
().
bar
=
true
;
return
new
C
().
foo
===
"foo"
&&
baz
;
}
if
(!
test
())
throw
new
Error
(
"Test failed"
);