Sign in
webkit
/
WebKit
/
c8cfe6a197ba034d61fade4d6d0887205b348d7f
/
.
/
PerformanceTests
/
SixSpeed
/
tests
/
defaults
/
defaults.es5
blob: eec3f0d2e7e80cb63557e6d391d52c2d45e5586e [
file
] [
log
] [
blame
]
function
fn
(
arg
,
other
)
{
arg
=
arg
===
undefined
?
1
:
arg
;
other
=
other
===
undefined
?
3
:
other
;
return
other
;
}
assertEqual
(
fn
(),
3
);
assertEqual
(
fn
(
1
,
2
),
2
);
test
(
function
()
{
fn
();
fn
(
2
);
fn
(
2
,
4
);
});