Fork of daniellemaywood.uk/gleam — Wasm codegen work
2

Configure Feed

Select the types of activity you want to include in your feed.

changelog entry

+6 -1
+6 -1
CHANGELOG.md
··· 48 48 backend so `(bitSize - c) % 8 === 0` becomes `bitSize % 8 === 0` when the 49 49 constant offset `c` is congruent modulo 8. This produces more uniform 50 50 generated code for byte-aligned patterns. 51 - 52 51 ([Daniele Scaratti](https://github.com/lupodevelop)) 53 52 54 53 ### Build tool ··· 235 234 - Fixed a bug where using the `bytes` and `unit` options together on a bit array 236 235 segment could generate incorrect code on the JavaScript target. 237 236 ([Surya Rose](https://github.com/GearsDatapacks)) 237 + 238 + - Fixed a bug where the JavaScript code generator could produce duplicate `let` 239 + declarations for internal variables after a `case` expression whose subject 240 + directly matches branch when existing variables with same exist in outer 241 + scope. 242 + ([Andrey Kozhev](https://github.com/ankddev))