Sign in
webkit
/
WebKit
/
07d93176ad085e8b12e6369a18ce39856d96c516
/
.
/
JSTests
/
es6
/
function_name_property_shorthand_methods.js
blob: 557ecdbaf81515ad18ce38f7c489a635c8da2eb1 [
file
] [
log
] [
blame
]
function
test
()
{
var
o
=
{
foo
(){}
};
return
o
.
foo
.
name
===
"foo"
;
}
if
(!
test
())
throw
new
Error
(
"Test failed"
);