Sign in
chromium
/
external
/
github.com
/
WebKit
/
webkit
/
refs/heads/main
/
.
/
JSTests
/
stress
/
sink-function-past-invalid-check-sneaky.js
blob: f8948bd070fc6d6e0d687545e2f9293cb7bc12f2 [
file
] [
edit
]
function
foo
(
p
)
{
var
o
=
function
()
{
};
var
q
=
{
f
:
p
?
o
:
42
};
var
tmp
=
q
.
f
+
1
;
}
noInline
(
foo
);
for
(
var
i
=
0
;
i
<
testLoopCount
;
++
i
)
foo
(
false
);
foo
(
true
);