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