0.5.3
Collective release:
0.5.3:
- Numbers with scientific notation are now parsed correctly.
- Fixed a bug that would strip parenthesis from binary operations where they'd be required to preserve intended order of operations - particularly when using addition on different types (
"foo" + (1 + 2)
vs"foo" + 1 + 2
).
0.5.2:
- Bugfixes following object member code refactoring.
0.5.1:
- Allow numbers as object keys (
let foo = { 10: 'ten' };
)