- A preview release has finally come.
- Statically linked Linux executable under License LGPL
-
Fix multi-param datatype constructors
-
Fix throwing exceptions
-
Fix the use of some JS specific features in CodeGen:
PS codegen uses JS tricks like
"a" + ["b", "c"] == "ab,c", we change the generated code likethrow new Error("a" + ["b", "c"])tothrow Error("a" + ",".join(["b", "c"])).*Further optimizations can be done later.