Sign in
webkit
/
WebKit
/
2a0aecef68e2ca0674a52b051412def7e6b01404
/
.
/
JSTests
/
stress
/
for-in-disable-bytecode-generator-peephole-optimizations-after-rewrite.js
blob: 25c90b6650a16529de7d96c030fa052d71a7b363 [
file
] [
log
] [
blame
]
function
foo
()
{
for
(
let x in
[])
{
x in
undefined
;
x
=
0
;
[][
x
];
}
}
foo
();