Sign in
webkit
/
WebKit
/
c237475210db4fe10d1014ae2954660ab167db05
/
.
/
JSTests
/
es6
/
class_methods_arent_enumerable.js
blob: aa6eed4d90847c6c6b787c04c735a10a9770b1e0 [
file
] [
log
] [
blame
]
function
test
()
{
class
C
{
foo
()
{}
static
bar
()
{}
}
return
!
C
.
prototype
.
propertyIsEnumerable
(
"foo"
)
&&
!
C
.
propertyIsEnumerable
(
"bar"
);
}
if
(!
test
())
throw
new
Error
(
"Test failed"
);