Sign in
webkit
/
WebKit
/
73559930a6418bc4621c1c5774b11e1be9c21a8f
/
.
/
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
;