diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2019-03-12 10:27:09 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2019-03-12 10:27:09 +0800 |
commit | 70f06353bf44da468331508f8306f6d8bd80f82f (patch) | |
tree | c2f195af0b985b0ee5e0a39d37f3863c143ca9f5 /server/src/core/hover/function.lua | |
parent | 396cc15abad6f2d331412714a04965b0ee1ca2a7 (diff) | |
download | lua-language-server-70f06353bf44da468331508f8306f6d8bd80f82f.zip |
修正一些bug
Diffstat (limited to 'server/src/core/hover/function.lua')
-rw-r--r-- | server/src/core/hover/function.lua | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/server/src/core/hover/function.lua b/server/src/core/hover/function.lua index f8f7655e..9bb532ae 100644 --- a/server/src/core/hover/function.lua +++ b/server/src/core/hover/function.lua @@ -4,9 +4,6 @@ local function buildValueArgs(func, object, select) end local names = {} local values = {} - if func:getObject() then - names[#names+1] = 'self' - end if func.args then for _, arg in ipairs(func.args) do names[#names+1] = arg:getName() |