-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathNEWS
27 lines (15 loc) · 774 Bytes
/
NEWS
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
* Version 0.2.0 (Jan 30, 2022)
- Add initial macro support.
- Rename log:info, log:warn and log:error to console-log, console-warn and
consoler-error respectively. Also add console-debug.
- Removed special syntax to access JavaScript objects and added js-ref,
js-set!, js-new and js-invoke.
* Version 0.1.0 (Jan 21, 2022)
- Very primitive JavaScript object method calls.
- Create 'javascript language which actually decompiles from 'tree-il. So basically we do:
compile(guilescript) -> 'tree-il -> decompile(tree-il) -> javascript.
- Split function translation into its own file.
- Fix ending statement semicolon issues.
- Return statements should only be allowed inside functions.
* Version 0.0.0 (Jan 17, 2022)
- Initial release.