Sign in
webkit
/
WebKit
/
98517451c44951a553bf7eb2f40afcaffd7bcdca
/
.
/
JSTests
/
es6
/
function_name_property_bound_functions.js
blob: 0b14b9741d3793a2ed7e380bf90dbf4545f6216b [
file
] [
log
] [
blame
]
function
test
()
{
function
foo
()
{};
return
foo
.
bind
({}).
name
===
"bound foo"
&&
(
function
(){}).
bind
({}).
name
===
"bound "
;
}
if
(!
test
())
throw
new
Error
(
"Test failed"
);