Sign in
webkit
/
WebKit
/
9f9c15eb6fdc193d77c7e606d643d4b8ec49399b
/
.
/
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"
);