Sign in
webkit
/
WebKit
/
00d9c36630c3b100532e86e2616da21d7c5e504a
/
.
/
JSTests
/
stress
/
comma-value-func-call-resolve.js
blob: 25731e3aad956cb7e98ce259d3f3048bc9fe826f [
file
] [
log
] [
blame
]
function
shouldBe
(
actual
,
expected
)
{
if
(
actual
!==
expected
)
throw
new
Error
(
'bad value: '
+
actual
);
}
function
fn
()
{
var
ok
=
{};
var
x
=
function
()
{
ok
.
foo
=
42
;
};
var
result
=
(
0
,
x
)(
x
=
1
);
shouldBe
(
x
,
1
);
shouldBe
(
ok
.
foo
,
42
);
}
fn
();