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