Renamed 'symbol_table' to 'symtbl'.
[mpsl.git] / RELEASE_NOTES
blob9af5fa4836ab6a0420e90f1d20d03b73f0658af3
1 MPSL Release Notes
2 ==================
4 1.0.3
5 -----
7  * Anonymous subroutines now run inside a block frame
8    instead of a subroutine frame. This way, they can have
9    access to local variables defined in the subroutine
10    they are called from. So, for example, if you run
11    map() inside a subroutine, its anonymous code block
12    can access the local variables defined there.
14 1.0.2
15 -----
17  * Small internal refactoring regarding subroutine and
18    block frames. Frame creation code has been unified,
19    so block frames don't crash when a NULL local symbol
20    table is sent as argument, and can have arguments.
21    This change is not visible from outside; only a step
22    towards closing bug #1107.