Releases: AssemblyScript/assemblyscript
Releases · AssemblyScript/assemblyscript
v0.27.31
New features
Other
v0.27.30
Bug fixes
- strictly check operator overload ambiguity (#2762) (dfc8a65)
Operator overload is an internal mechanism, it can support to compare user-defined class, but it need to be limited.
a == b
andb == a
should run the same function and get the same result in semantic level. Allowing ambiguity is bug prone. - report error for mulitple union type (#2872) (1847c8f)
Other
v0.27.29
v0.27.28
v0.27.27
v0.27.26
Bug fixes
Other
-
Compile incrementors in for loops within the initializer's flow (#2826) (9102c05)
It turns out that incrementors were compiled with the body's flow, which
meant that the incrementor had access to local variables declared in the
body. Now, incrementors no longer have access to such variables.Fixes #2825.
-
Binaryen on transform (#2832) (9605c03)
-
Expose binaryen instance on transform
-
Fix invalid import in generated output
-