diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2021-11-22 20:29:22 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2021-11-22 20:29:22 +0800 |
commit | 22cfc98fa8684002e6ab8a8279e898862ba0f494 (patch) | |
tree | 19d5ab0c9948d0e0ebacee72cd4689aad4b8cee6 /test/completion | |
parent | 928b40c6f186c4692212ff1f9751da4755aa6841 (diff) | |
download | lua-language-server-22cfc98fa8684002e6ab8a8279e898862ba0f494.zip |
fix
Diffstat (limited to 'test/completion')
-rw-r--r-- | test/completion/common.lua | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/test/completion/common.lua b/test/completion/common.lua index a01b2d10..00a3d56d 100644 --- a/test/completion/common.lua +++ b/test/completion/common.lua @@ -2739,3 +2739,19 @@ f({zzz<??>}) kind = define.CompletionItemKind.Property, } } + +TEST [[ +---@class A +---@field zzzz number + +---@param y A +local function f(x, y) end + +f(1, {<??>}) +]] +{ + [1] = { + label = 'zzzz', + kind = define.CompletionItemKind.Property, + } +} |