You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: changelog.md
+5-4
Original file line number
Diff line number
Diff line change
@@ -2,17 +2,18 @@
2
2
3
3
## Unreleased
4
4
<!-- 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
6
6
```lua
7
7
---@genericT
8
-
---@paramt`T`.Cat
9
-
---@returnT
8
+
---@paramt`T`.Cat?
9
+
---@returnT?
10
10
localfunctionf(t) end
11
11
12
-
localt=f('Smile') --> t is `Smile.Cat`
12
+
localt=f('Smile') --> t is `(Smile.Cat)?`
13
13
```
14
14
*`NEW` Test CLI: `--name=<testname>``-n=<testname>`: run specify unit test
15
15
*`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.
16
17
*`FIX` Fixed the comment calculating in docs `---@param a string?Comment` - now its `Comment` instead of `omment`.
17
18
*`NEW``---@class` supports attribute `partial`, which will not check missing inherited fields [#3023](https://github.com/LuaLS/lua-language-server/issues/3023)
0 commit comments