Releases: fink-lang/loxia
Releases · fink-lang/loxia
v4.5.0
4.5.0 (2020-03-24)
Features
- strings: add support for string template expressions (ee16e7a)
v4.4.0
4.4.0 (2020-03-04)
Features
- errors: make transform errors look more like parse errors (6424d24)
v4.3.0
4.3.0 (2020-03-03)
Features
- find: implement
find item: ...
(0beb5ba)
v4.2.1
4.2.1 (2020-03-02)
Bug Fixes
- throw: compile last throw expression as throw statement not
return throw ...
(a2129e0)
v4.2.0
4.2.0 (2020-03-02)
Features
- add
throw
and new
operators (bfa5e9a)
- string: add support for tagged templ strings (d6d81e7)
v4.1.0
4.1.0 (2020-03-01)
Features
- object: support calculated props (da8155a)
v4.0.0
4.0.0 (2020-02-28)
Features
- lang: support number and identifier token (5d104f8)
BREAKING CHANGES
- lang: drop support for
Symbol('other')
token type
v3.0.0
3.0.0 (2020-02-27)
Features
- ast: upgrade to latest larix with AST simplifications (60297a0)
BREAKING CHANGES
- ast: larix AST changed AST for literals and match
v2.1.0
2.1.0 (2020-02-26)
Features
- errors: add filename and loc to transform errors (1ff92a0)
- import: add support for module imports (39363bd)
v2.0.0
2.0.0 (2020-02-26)
Bug Fixes
- comments: add support for comments in
match
test expressions (d7b641a)
Features
- conditionals: remove
if
in favour of match
(1399b12)
BREAKING CHANGES
- conditionals:
match
covers all use-cases of if