Sign in
webkit
/
WebKit
/
987c9c4fb060cfd3a6fd05efa8323fb27085d2f0
/
.
/
PerformanceTests
/
SixSpeed
/
tests
/
arrow-args
/
arrow-args.es6
blob: 1a82d3685316e20f68d7e29e677a54a9fc23080c [
file
] [
log
] [
blame
]
var
obj
=
{
value
:
42
,
fn
:
function
()
{
return
()
=>
arguments
[
0
];
}
};
var
fn
=
obj
.
fn
(
1
);
assertEqual
(
fn
(),
1
);
test
(
function
()
{
fn
();
});