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