diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2022-11-02 17:29:18 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2022-11-02 17:29:18 +0800 |
commit | 625f5be9a6ae1c30dd5821f1dd2485073d054209 (patch) | |
tree | 2581abc44fa0b6a42b590fc842501b8a9edf9a1f /test/completion | |
parent | 3bf48c900605681216ce7c14cfe0cb43e583de4f (diff) | |
download | lua-language-server-625f5be9a6ae1c30dd5821f1dd2485073d054209.zip |
`---@see` use workspace-symbol
#1344
Diffstat (limited to 'test/completion')
-rw-r--r-- | test/completion/common.lua | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/test/completion/common.lua b/test/completion/common.lua index bf43a463..7266de16 100644 --- a/test/completion/common.lua +++ b/test/completion/common.lua @@ -3963,3 +3963,15 @@ t.<??> kind = define.CompletionItemKind.Field, }, } + +TEST [[ +---@class ABCD + +---@see ABCD<??> +]] +{ + { + label = 'ABCD', + kind = define.CompletionItemKind.Class, + }, +} |