Skip to content

Commit f1c9b93

Browse files
committed
fix #2214
1 parent ecda29f commit f1c9b93

File tree

3 files changed

+83
-36
lines changed

3 files changed

+83
-36
lines changed

changelog.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# changelog
22

3+
## 3.6.25
4+
* `FIX` [#2214]
5+
6+
[#2214]: https://github.com/LuaLS/lua-language-server/issues/2145
7+
38
## 3.6.24
49
`2023-7-21`
510
* `NEW` diagnostic: `missing-fields`

script/core/diagnostics/missing-fields.lua

+39-36
Original file line numberDiff line numberDiff line change
@@ -16,19 +16,24 @@ return function (uri, callback)
1616
await.delay()
1717

1818
local defs = vm.getDefs(src)
19-
local requiresKeys = {}
20-
local isClass = false
19+
for _, def in ipairs(defs) do
20+
if def.type == 'doc.class' and def.bindSource then
21+
if guide.isInRange(def.bindSource, src.start) then
22+
return
23+
end
24+
end
25+
if def.type == 'doc.type.array'
26+
or def.type == 'doc.type.table' then
27+
return
28+
end
29+
end
2130
for _, def in ipairs(defs) do
2231
if def.type == 'doc.class' then
2332
if not def.fields then
24-
goto continue
25-
end
26-
if def.bindSource then
27-
if guide.isInRange(def.bindSource, src.start) then
28-
isClass = true
29-
break
30-
end
33+
return
3134
end
35+
36+
local requiresKeys = {}
3237
for _, field in ipairs(def.fields) do
3338
if not field.optional
3439
and not vm.compileNode(field):isNullable() then
@@ -39,37 +44,35 @@ return function (uri, callback)
3944
end
4045
end
4146
end
42-
end
43-
::continue::
44-
end
4547

46-
if #requiresKeys == 0 or isClass then
47-
return
48-
end
48+
if #requiresKeys == 0 then
49+
return
50+
end
51+
local myKeys = {}
52+
for _, field in ipairs(src) do
53+
local key = vm.getKeyName(field)
54+
if key then
55+
myKeys[key] = true
56+
end
57+
end
4958

50-
local myKeys = {}
51-
for _, field in ipairs(src) do
52-
local key = vm.getKeyName(field)
53-
if key then
54-
myKeys[key] = true
55-
end
56-
end
59+
local missedKeys = {}
60+
for _, key in ipairs(requiresKeys) do
61+
if not myKeys[key] then
62+
missedKeys[#missedKeys+1] = ('`%s`'):format(key)
63+
end
64+
end
5765

58-
local missedKeys = {}
59-
for _, key in ipairs(requiresKeys) do
60-
if not myKeys[key] then
61-
missedKeys[#missedKeys+1] = ('`%s`'):format(key)
62-
end
63-
end
66+
if #missedKeys == 0 then
67+
return
68+
end
6469

65-
if #missedKeys == 0 then
66-
return
70+
callback {
71+
start = src.start,
72+
finish = src.finish,
73+
message = lang.script('DIAG_MISSING_FIELDS', table.concat(missedKeys, ', ')),
74+
}
75+
end
6776
end
68-
69-
callback {
70-
start = src.start,
71-
finish = src.finish,
72-
message = lang.script('DIAG_MISSING_FIELDS', table.concat(missedKeys, ', ')),
73-
}
7477
end)
7578
end

test/diagnostics/common.lua

+39
Original file line numberDiff line numberDiff line change
@@ -2431,3 +2431,42 @@ TEST [[
24312431
---@class A
24322432
local t = {}
24332433
]]
2434+
2435+
TEST [[
2436+
---@diagnostic disable: unused-local
2437+
2438+
---@class Foo
2439+
---@field a number
2440+
---@field b number
2441+
---@field c number
2442+
2443+
---@type Foo|Foo[]
2444+
local a = {
2445+
{
2446+
a = 1,
2447+
b = 2,
2448+
c = 3,
2449+
}
2450+
}
2451+
]]
2452+
2453+
TEST [[
2454+
---@diagnostic disable: unused-local
2455+
2456+
---@class Foo
2457+
---@field a number
2458+
---@field b number
2459+
---@field c number
2460+
2461+
---@class Bar
2462+
---@field ba number
2463+
---@field bb number
2464+
---@field bc number
2465+
2466+
---@type Foo|Bar
2467+
local b = {
2468+
a = 1,
2469+
b = 2,
2470+
c = 3,
2471+
}
2472+
]]

0 commit comments

Comments
 (0)