Sign in
webkit
/
WebKit
/
2538ba1dc66c1a9ab694bc167c5d56293dae7e8e
/
.
/
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
;