Sign in
webkit
/
WebKit
/
10627ba484528fed3e7358b1801250bb004c8a99
/
.
/
JSTests
/
es6
/
function_name_property_object_methods_class.js
blob: 39e9809da27dbf126cb28764f0c0528551658f27 [
file
] [
log
] [
blame
]
function
test
()
{
var
o
=
{
foo
:
class
{},
bar
:
class
baz
{}};
o
.
qux
=
class
{};
return
o
.
foo
.
name
===
"foo"
&&
o
.
bar
.
name
===
"baz"
&&
o
.
qux
.
name
===
""
;
}
if
(!
test
())
throw
new
Error
(
"Test failed"
);