Skip to content

Commit 12013ba

Browse files
authored
Merge pull request #3031 from TIMONz1535/TIMONz1535-patch-4
Improve generic pattern to support optional, union, array. Fixed regression.
2 parents 8a6d9db + 35810de commit 12013ba

File tree

6 files changed

+99
-26
lines changed

6 files changed

+99
-26
lines changed

changelog.md

+5-4
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,18 @@
22

33
## Unreleased
44
<!-- Add all new changes here. They will be moved under a version at release -->
5-
* `CHG` [#3014] Generic pattern now supports definition after capture
5+
* `CHG` [#3014] Generic pattern now supports definition after capture and optional, union, array
66
```lua
77
---@generic T
8-
---@param t `T`.Cat
9-
---@return T
8+
---@param t `T`.Cat?
9+
---@return T?
1010
local function f(t) end
1111

12-
local t = f('Smile') --> t is `Smile.Cat`
12+
local t = f('Smile') --> t is `(Smile.Cat)?`
1313
```
1414
* `NEW` Test CLI: `--name=<testname>` `-n=<testname>`: run specify unit test
1515
* `FIX` Fixed the error that the configuration file pointed to by the `--configpath` option was not read and loaded.
16+
* `FIX` Generic return can be optional.
1617
* `FIX` Fixed the comment calculating in docs `---@param a string?Comment` - now its `Comment` instead of `omment`.
1718
* `NEW` `---@class` supports attribute `partial`, which will not check missing inherited fields [#3023](https://github.com/LuaLS/lua-language-server/issues/3023)
1819
```lua

script/parser/luadoc.lua

+17-18
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ Symbol <- ({} {
7272
er = '\r',
7373
et = '\t',
7474
ev = '\v',
75-
name = (m.R('az', 'AZ', '09', '\x80\xff') + m.S('_')) * (m.R('az', 'AZ', '__', '09', '\x80\xff') + m.S('_.*-'))^0,
75+
name = (m.R('az', 'AZ', '09', '\x80\xff') + m.S('_')) * (m.R('az', 'AZ', '09', '\x80\xff') + m.S('_.*-'))^0,
7676
Char10 = function (char)
7777
---@type integer?
7878
char = tonumber(char)
@@ -727,7 +727,6 @@ local function parseCodePattern(parent)
727727
return nil
728728
end
729729
local codeOffset
730-
local finishOffset
731730
local content
732731
local i = 1
733732
if tp == 'code' then
@@ -736,41 +735,41 @@ local function parseCodePattern(parent)
736735
pattern = '%s'
737736
end
738737
while true do
739-
i = i + 1
740-
local next, nextContent = peekToken(i)
741-
if not next or TokenFinishs[Ci+i-1] + 1 ~= TokenStarts[Ci+i] then
742-
if codeOffset then
743-
finishOffset = i-1
744-
break
745-
end
738+
i = i+1
739+
local nextTp, nextContent = peekToken(i)
740+
if not nextTp or TokenFinishs[Ci+i-1] + 1 ~= TokenStarts[Ci+i] then
746741
---不连续的name,无效的
747-
return nil
742+
break
748743
end
749-
if next == 'name' then
744+
if nextTp == 'name' then
750745
pattern = pattern .. nextContent
751-
elseif next == 'code' then
746+
elseif nextTp == 'code' then
752747
if codeOffset then
753748
-- 暂时不支持多generic
754-
return nil
749+
break
755750
end
756751
codeOffset = i
757752
pattern = pattern .. '%s'
758753
content = nextContent
759754
elseif codeOffset then
760755
-- should be match with Parser "name" mask
761-
if next == 'integer' then
756+
if nextTp == 'integer' then
762757
pattern = pattern .. nextContent
763-
elseif next == 'symbol' and (nextContent == '.' or nextContent == '*' or nextContent == '-') then
758+
elseif nextTp == 'symbol' and (nextContent == '.' or nextContent == '*' or nextContent == '-') then
764759
pattern = pattern .. nextContent
765760
else
766-
return nil
761+
break
767762
end
768763
else
769-
return nil
764+
break
770765
end
771766
end
767+
if not codeOffset then
768+
return nil
769+
end
772770
nextToken()
773771
local start = getStart()
772+
local finishOffset = i-1
774773
if finishOffset == 1 then
775774
-- code only, no pattern
776775
pattern = nil
@@ -932,7 +931,7 @@ function parseType(parent)
932931
local function pushResume()
933932
local comments
934933
for i = 0, 100 do
935-
local nextComm = NextComment(i,'peek')
934+
local nextComm = NextComment(i, true)
936935
if not nextComm then
937936
return false
938937
end

script/vm/generic.lua

+3
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,9 @@ function mt:resolve(uri, args)
136136
end
137137
end
138138
end
139+
if protoNode:isOptional() then
140+
result:addOptional()
141+
end
139142
return result
140143
end
141144

test/definition/luadoc.lua

+31-3
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ TEST [[
239239
AAAA = {};
240240
241241
function AAAA:<!SSDF!>()
242-
242+
243243
end
244244
245245
AAAA.a.<?SSDF?>
@@ -352,7 +352,7 @@ local Foo = {}
352352
function Foo:bar1() end
353353
354354
---@generic T
355-
---@param arg1 `T`*
355+
---@param arg1 `T`*?
356356
---@return T
357357
function Generic(arg1) print(arg1) end
358358
@@ -366,7 +366,7 @@ local Foo = {}
366366
function Foo:<!bar1!>() end
367367
368368
---@generic T
369-
---@param arg1 `T`*
369+
---@param arg1 `T`*?
370370
---@return T
371371
function Generic(arg1) print(arg1) end
372372
@@ -402,6 +402,34 @@ local v1 = Generic("Foo")
402402
print(v1.<?bar1?>)
403403
]]
404404

405+
TEST [[
406+
---@class n-Foo-2
407+
local Foo = {}
408+
function Foo:bar1() end
409+
410+
---@generic T
411+
---@param arg1 n-`T`-2[]
412+
---@return T
413+
function Generic(arg1) print(arg1) end
414+
415+
local v1 = Generic({Foo})
416+
print(v1.<?bar1?>)
417+
]]
418+
419+
TEST [[
420+
---@class n-Foo-2
421+
local Foo = {}
422+
function Foo:<!bar1!>() end
423+
424+
---@generic T
425+
---@param arg1 n-`T`-2[]
426+
---@return T
427+
function Generic(arg1) print(arg1) end
428+
429+
local v1 = Generic({"Foo"})
430+
print(v1.<?bar1?>)
431+
]]
432+
405433
TEST [[
406434
---@class A
407435
local t

test/diagnostics/missing-return.lua

+18
Original file line numberDiff line numberDiff line change
@@ -156,3 +156,21 @@ function F()
156156
157157
end
158158
]]
159+
160+
TEST [[
161+
---@generic T
162+
---@param t T
163+
---@return T
164+
function F(t)
165+
return t
166+
end
167+
]]
168+
169+
TEST [[
170+
---@generic T
171+
---@param t T
172+
---@return T?
173+
function F(t)
174+
175+
end
176+
]]

test/type_inference/common.lua

+25-1
Original file line numberDiff line numberDiff line change
@@ -359,8 +359,32 @@ end
359359
local _, _, _, <?b?>, _ = x(nil, true, 1, 'yy')
360360
]]
361361

362+
TEST 'nil' [[
363+
local <?k?>, <?v?> = next()
364+
local <?k?>, <?v?> = next({})
365+
]]
366+
367+
TEST 'integer?' [[
368+
local <?k?>, <?v?> = next({1})
369+
]]
370+
371+
TEST 'integer?' [[
372+
local a
373+
local <?k?>, v = next({a})
374+
]]
375+
376+
-- probably explicit unknown generic should be unknown
377+
TEST 'nil' [[
378+
local a
379+
local k, <?v?> = next({a})
380+
]]
381+
362382
TEST 'unknown' [[
363-
local <?x?> = next()
383+
---@generic T
384+
---@param t T?
385+
---@return T
386+
local function F(t) end
387+
local <?x?> = F()
364388
]]
365389

366390
TEST 'unknown' [[

0 commit comments

Comments
 (0)