Sign in
webkit
/
WebKit
/
a8e7f903f5d2fca7a5151b07b198e8a8025269f9
/
.
/
LayoutTests
/
js
/
script-tests
/
arrowfunction-associativity-2.js
blob: 03d16a4391e9cc8c4dfecd789aa29596ee7cff53 [
file
] [
log
] [
blame
]
description
(
'Tests for ES6 arrow function nested declaration'
);
debug
(
"af = a => b => a"
)
var
af
=
a
=>
b
=>
a
;
shouldBe
(
"af('ABC')('DEF')"
,
"'ABC'"
);
var
successfullyParsed
=
true
;