diff options
author | sumneko <sumneko@hotmail.com> | 2019-04-24 19:22:59 +0800 |
---|---|---|
committer | sumneko <sumneko@hotmail.com> | 2019-04-24 19:22:59 +0800 |
commit | db2de7238fb92269b7ad6aca8a35f82e01eaa126 (patch) | |
tree | 143dbf9e6b5f28db1c20585b36ba959fcaf890b0 /server/test/completion | |
parent | aea74ee33de825921500c3210a65a10ef3c8a8e0 (diff) | |
download | lua-language-server-db2de7238fb92269b7ad6aca8a35f82e01eaa126.zip |
emmy.alias
Diffstat (limited to 'server/test/completion')
-rw-r--r-- | server/test/completion/init.lua | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/server/test/completion/init.lua b/server/test/completion/init.lua index 0f4b27d3..2b79aa4d 100644 --- a/server/test/completion/init.lua +++ b/server/test/completion/init.lua @@ -824,3 +824,18 @@ local abcd kind = CompletionItemKind.Class, }, } + +TEST [[ +---@alias abc abb +---@type a$ +]] +{ + { + label = 'abc', + kind = CompletionItemKind.Class, + }, + { + label = 'abb', + kind = CompletionItemKind.Class, + }, +} |