Changelog
[1.1.2] (2020-3-3)
(
)
as a foldable region. after observing declarations with list
and lex
as followings.local l1 is list(
1,
2,
3,
)
local l2 is lex(
"1", 1,
"2", 2,
"3", 3,
)
print
statement as well as a print
function there was special logic to go the call route if a (
was encountered. This caused issues when really the statement was of the form.print (1 + 2) + "cat".
Here this is actually a print statement with a grouping and a binary plus. previously it would consider this the function. Instead this special case is now removed and all print tokens are given the print
functions type signature.
Changelog
[0.12.0] (2019-10-8)
Changelog
[0.8.2] (2019-7-13)
// #region
to the language server override vscode default folding behavior. This replicates the default folding behavior inside of the language server.Changelog
[0.7.0] (2019-7-4)
Changelog
[0.6.0] (2019-5-30)
ship
and body
.