Sign in
webkit
/
WebKit
/
30cbb8ab8be602f24ef56dd047a591165e0797e0
/
.
/
JSTests
/
es6
/
function_name_property_function_statements.js
blob: c1f29994d8fe805ca0279fe671c9a0db882d3bc0 [
file
] [
log
] [
blame
]
function
test
()
{
function
foo
(){};
return
foo
.
name
===
'foo'
&&
(
function
(){}).
name
===
''
;
}
if
(!
test
())
throw
new
Error
(
"Test failed"
);