Sign in
webkit
/
WebKit
/
60f7f614606378b3872f35b5256e853c44ef36af
/
.
/
JSTests
/
es6
/
class_static_methods.js
blob: 7735848ee7f89ff4cd1fdc17ac8cefc8b152dade [
file
] [
log
] [
blame
]
function
test
()
{
class
C
{
static
method
()
{
return
3
;
}
}
return
typeof
C
.
method
===
"function"
&&
C
.
method
()
===
3
;
}
if
(!
test
())
throw
new
Error
(
"Test failed"
);