Sign in
webkit
/
WebKit
/
f96a7147e1cda0ec250a7488a176687c35252015
/
.
/
JSTests
/
es6
/
arrow_functions_cant_be_bound_can_be_curried.js
blob: 20dffaea60f03aa49027387d362bfd8ad2cad43a [
file
] [
log
] [
blame
]
function
test
()
{
var
d
=
{
x
:
"bar"
,
y
:
function
()
{
return
z
=>
this
.
x
+
z
;
}};
var
e
=
{
x
:
"baz"
};
return
d
.
y
().
bind
(
e
,
"ley"
)()
===
"barley"
;
}
if
(!
test
())
throw
new
Error
(
"Test failed"
);