v0.2.7-beta.7
Pre-release
Pre-release
Added
- Added
Loretta.CodeAnalysis.Lua.Experimental.SyntaxExtensions.ConstantFold
.
Changed
- DEPRECATED:
Loretta.CodeAnalysis.Lua.Experimental.SyntaxExtensions.FoldConstants
in favor ofConstantFold
.
Fixed
ObjectDisplay.FormatLiteral
was not adding the leading quote properly.
This also affectedSyntaxFactory.Literal
.- Constant folder was not folding
"a" .. true
to"atrue"
. - Constant folder was not folding
nil == nil
totrue
. - Constant folder was folding
not x
tox
instead of the result of the negation.