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