Select Git revision
Forked from
STJr / SRB2
Source project has a limited visibility.
changelog.md 69.16 KiB
changelog
3.7.3
2023-11-14
-
FIX
can not infer arg type in some cases.
3.7.2
2023-11-9
-
FIX
#2407
3.7.1
2023-11-7
3.7.0
2023-8-24
-
NEW
support---@type
and--[[@as]]
for return statement -
NEW
commandline parameter--force-accept-workspace
: allowing the use of the root directory or home directory as the workspace -
NEW
diagnostic:inject-field
-
NEW
---@enum
supports attributekey
---@enum (key) AnimalType local enum = { Cat = 1, Dog = 2, } ---@param animal userdata ---@param atp AnimalType ---@return boolean local function isAnimalType(animal, atp) return API.isAnimalType(animal, enum[atp]) end assert(isAnimalType(animal, 'Cat'))
-
NEW
---@class
supports attributeexact
---@class (exact) Point ---@field x number ---@field y number local m = {} m.x = 1 -- OK m.y = 2 -- OK m.z = 3 -- Warning
-
FIX
wrong hover and signature for method with varargs and overloads -
FIX
#2155 -
FIX
#2224 -
FIX
#2252 -
FIX
#2267
3.6.25
2023-7-26
-
FIX
#2214
3.6.24
2023-7-21
-
NEW
diagnostic:missing-fields
-
FIX
shake ofcodeLens
-
FIX
#2145