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