Sign in
webkit
/
WebKit
/
14cb98a360e661c1b39a648e8ccc3be2e2757789
/
.
/
JSTests
/
stress
/
resolve-func-call-resolve.js
blob: f7a500d15c7adb06e1ed8bbcb359fc872fd683ff [
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
=
x
(
x
=
1
);
shouldBe
(
x
,
1
);
shouldBe
(
ok
.
foo
,
42
);
}
fn
();