Streamline ref object backup.

This commit is contained in:
Stephen Chung
2021-03-02 14:44:21 +08:00
parent b76e8da5ee
commit 521c8fad27
2 changed files with 19 additions and 13 deletions

View File

@@ -25,6 +25,7 @@ Breaking changes
Enhancements
------------
* Function calls are more optimized and should now run faster.
* `range` function now supports negative step and decreasing streams (i.e. to < from).
* More information is provided to the error variable captured by the `catch` statement in an _object map_.
* Previously, `private` functions in an `AST` cannot be called with `call_fn` etc. This is inconvenient when trying to call a function inside a script which also serves as a loadable module exporting part (but not all) of the functions. Now, all functions (`private` or not) can be called in an `AST`. The `private` keyword is relegated to preventing a function from being exported.