Allow closures in parse expressions.

This commit is contained in:
Stephen Chung
2022-12-06 21:41:38 +08:00
parent e2bd0705b1
commit 90998f4f14
3 changed files with 22 additions and 4 deletions

View File

@@ -9,6 +9,7 @@ Bug fixes
* Integer numbers that are too large to deserialize into `INT` now fall back to `Decimal` or `FLOAT` instead of silently truncating.
* Parsing deeply-nested closures (e.g. `||{||{||{||{||{||{||{...}}}}}}}`) no longer panics but will be confined to the nesting limit.
* Closures containing a single expression are now allowed in `Engine::eval_expression` etc.
Breaking API changes
--------------------