Sign in
webkit
/
WebKit
/
6fd57f0545e2ab789319dc828ca2e5959d39c256
/
.
/
JSTests
/
es6
/
class_computed_static_methods.js
blob: f1d14907eadad9147a39555aa07ca230b857d420 [
file
] [
log
] [
blame
]
function
test
()
{
var
foo
=
"method"
;
class
C
{
static
[
foo
]()
{
return
3
;
}
}
return
typeof
C
.
method
===
"function"
&&
C
.
method
()
===
3
;
}
if
(!
test
())
throw
new
Error
(
"Test failed"
);