The bug occurs when converting the Map class to an array. ```ts const map = new Map().set(1, 2); const array = Array.from(map, ([v,k]) => ({k,v})); ``` Error: `attempt to perform arithmetic on a boolean value (local 'i')` [Playground](https://typescripttolua.github.io/play/#code/MYewdgzgLgBAtgQwA4wLwzAUwO4wLLIAUAlAHQSZSECMANDAEzEDcAUKJLAgE7cICeaGAEFeA0gDNuIOIURJ6hANoA3WgGsAusTQA+GIQDe62ioC+xFkA)