diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2019-10-21 15:52:55 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2019-10-21 15:52:55 +0800 |
commit | 49566afd015200c867f673dbe04f97dc241cc4be (patch) | |
tree | af843eaeb29e67d06784c42d664807561c344a36 /server/test | |
parent | dcf3a0fc15d3c96fbded3960d9bc56a4dc93f737 (diff) | |
download | lua-language-server-49566afd015200c867f673dbe04f97dc241cc4be.zip |
#101 函数多返回值换行
Diffstat (limited to 'server/test')
-rw-r--r-- | server/test/hover/init.lua | 19 |
1 files changed, 13 insertions, 6 deletions
diff --git a/server/test/hover/init.lua b/server/test/hover/init.lua index b9bcc0fc..3a4c05b1 100644 --- a/server/test/hover/init.lua +++ b/server/test/hover/init.lua @@ -189,7 +189,8 @@ TEST [[ ]] [=[ function load(chunk: string/function [, chunkname: string [, mode: string [, env: table]]]) - -> function, error_message: string + -> function + , error_message: string ]=] TEST [[ @@ -454,7 +455,8 @@ TEST[[ ]] [[ function next(table: table [, index: any]) - -> key: any, value: any + -> key: any + , value: any ]] TEST[[ @@ -462,7 +464,8 @@ local <?n?> = pairs() ]] [[ function n<next>(table: table [, index: any]) - -> key: any, value: any + -> key: any + , value: any ]] TEST[[ @@ -611,7 +614,8 @@ end ]] [[ function f() - -> A|B, C + -> A|B + , C ]] TEST [[ @@ -856,7 +860,8 @@ function <?f?>() end ]] [=[ function f() - -> key: string, value: string + -> key: string + , value: string ]=] TEST [[ @@ -867,7 +872,9 @@ function <?f?>() end ]] [=[ function f() - -> [x: any [, y: string], z: string] + -> [x: any [ + , y: string] + , z: string] ]=] TEST [[ |