fix: fix iteration bugs
Some iteration semantics got mixed up when replacing remaining uses of `var` variable declarations in ae37fb6c. `var foo in bar` cannot be replaced with `const foo of bar` because the first will assign the iteration index of the current item to foo, whereas the second will assign the actual iteration item.
Please register or sign in to comment