Sign in
webkit
/
WebKit
/
23e576feb4d75c9fc45f35cc19515c4cf11389a1
/
.
/
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
;