diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2021-11-08 20:35:02 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2021-11-08 20:35:02 +0800 |
commit | c082743f26413673dc71cf04f6f25c4f9e34f96c (patch) | |
tree | 4b604e29de6623913d02ac128572829ed45c8262 /test/hover/init.lua | |
parent | 3c265f1bd4409c5713e88127e8fdca23870ea3c1 (diff) | |
download | lua-language-server-c082743f26413673dc71cf04f6f25c4f9e34f96c.zip |
cleanup
Diffstat (limited to 'test/hover/init.lua')
-rw-r--r-- | test/hover/init.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/hover/init.lua b/test/hover/init.lua index d5c47ddf..974e0740 100644 --- a/test/hover/init.lua +++ b/test/hover/init.lua @@ -245,7 +245,7 @@ TEST [[ <?print?>() ]] [[ -function print(...) +function print(...: any) ]] TEST [[ @@ -299,7 +299,7 @@ end <?x?>(1, 2, 3, 4, 5, 6, 7) ]] [[ -function x(a: any, ...) +function x(a: any, ...: any) ]] TEST [[ |