summaryrefslogtreecommitdiff
path: root/server/src/core/hover
diff options
context:
space:
mode:
Diffstat (limited to 'server/src/core/hover')
-rw-r--r--server/src/core/hover/emmy_function.lua9
-rw-r--r--server/src/core/hover/function.lua9
-rw-r--r--server/src/core/hover/lib_function.lua17
3 files changed, 23 insertions, 12 deletions
diff --git a/server/src/core/hover/emmy_function.lua b/server/src/core/hover/emmy_function.lua
index 8c36ea2c..e38e54a4 100644
--- a/server/src/core/hover/emmy_function.lua
+++ b/server/src/core/hover/emmy_function.lua
@@ -7,6 +7,7 @@ local function buildEmmyArgs(emmy, object, select)
start = 1
end
local strs = {}
+ local args = {}
local i = 0
emmy:eachParam(function (name, typeObj)
i = i + 1
@@ -20,6 +21,7 @@ local function buildEmmyArgs(emmy, object, select)
strs[#strs+1] = '@ARG'
end
strs[#strs+1] = name .. ': ' .. typeObj:getType()
+ args[#args+1] = strs[#strs]
if i == select then
strs[#strs+1] = '@ARG'
end
@@ -40,7 +42,7 @@ local function buildEmmyArgs(emmy, object, select)
if #argLabel == 0 then
argLabel = nil
end
- return text, argLabel
+ return text, argLabel, args
end
local function buildEmmyReturns(emmy)
@@ -115,12 +117,12 @@ local function buildEnum(lib)
end
return function (name, emmy, object, select)
- local args, argLabel = buildEmmyArgs(emmy, object, select)
+ local argStr, argLabel, args = buildEmmyArgs(emmy, object, select)
local returns = buildEmmyReturns(emmy)
local enum = buildEnum(emmy)
local tip = emmy.description
local headLen = #('function %s('):format(name)
- local title = ('function %s(%s)%s'):format(name, args, returns)
+ local title = ('function %s(%s)%s'):format(name, argStr, returns)
if argLabel then
argLabel[1] = argLabel[1] + headLen
argLabel[2] = argLabel[2] + headLen
@@ -130,5 +132,6 @@ return function (name, emmy, object, select)
description = tip,
enum = enum,
argLabel = argLabel,
+ args = args,
}
end
diff --git a/server/src/core/hover/function.lua b/server/src/core/hover/function.lua
index 42d6bf6d..eab1ff59 100644
--- a/server/src/core/hover/function.lua
+++ b/server/src/core/hover/function.lua
@@ -33,6 +33,7 @@ local function buildValueArgs(func, object, select)
else
max = math.max(#names, #values)
end
+ local args = {}
for i = start, max do
local name = names[i]
local value = values[i] or 'any'
@@ -56,6 +57,7 @@ local function buildValueArgs(func, object, select)
else
strs[#strs+1] = value
end
+ args[#args+1] = strs[#strs]
if i == select then
strs[#strs+1] = '@ARG'
end
@@ -95,7 +97,7 @@ local function buildValueArgs(func, object, select)
if #argLabel == 0 then
argLabel = nil
end
- return text, argLabel
+ return text, argLabel, args
end
local function buildValueReturns(func)
@@ -215,13 +217,13 @@ local function getOverLoads(name, func, object, select)
end
return function (name, func, object, select)
- local args, argLabel = buildValueArgs(func, object, select)
+ local argStr, argLabel, args = buildValueArgs(func, object, select)
local returns = buildValueReturns(func)
local enum = buildEnum(func)
local comment = getComment(func)
local overloads = getOverLoads(name, func, object, select)
local headLen = #('function %s('):format(name)
- local title = ('function %s(%s)%s'):format(name, args, returns)
+ local title = ('function %s(%s)%s'):format(name, argStr, returns)
if argLabel then
argLabel[1] = argLabel[1] + headLen
argLabel[2] = argLabel[2] + headLen
@@ -232,5 +234,6 @@ return function (name, func, object, select)
enum = enum,
argLabel = argLabel,
overloads = overloads,
+ args = args,
}
end
diff --git a/server/src/core/hover/lib_function.lua b/server/src/core/hover/lib_function.lua
index 3aa0cc5a..75e70064 100644
--- a/server/src/core/hover/lib_function.lua
+++ b/server/src/core/hover/lib_function.lua
@@ -11,6 +11,7 @@ local function buildLibArgs(lib, object, select)
start = 1
end
local strs = {}
+ local args = {}
for i = start, #lib.args do
local arg = lib.args[i]
if arg.optional then
@@ -28,14 +29,17 @@ local function buildLibArgs(lib, object, select)
if i == select then
argStr[#argStr+1] = '@ARG'
end
+ local name = ''
if arg.name then
- argStr[#argStr+1] = ('%s: '):format(arg.name)
+ name = ('%s: '):format(arg.name)
end
if type(arg.type) == 'table' then
- argStr[#argStr+1] = table.concat(arg.type, '/')
+ name = name .. table.concat(arg.type, '/')
else
- argStr[#argStr+1] = arg.type or 'any'
+ name = name .. (arg.type or 'any')
end
+ argStr[#argStr+1] = name
+ args[#args+1] = name
if arg.default then
argStr[#argStr+1] = ('(%q)'):format(arg.default)
end
@@ -71,7 +75,7 @@ local function buildLibArgs(lib, object, select)
if #argLabel == 0 then
argLabel = nil
end
- return text, argLabel
+ return text, argLabel, args
end
local function buildLibReturns(lib)
@@ -192,13 +196,13 @@ local function buildDoc(lib)
end
return function (name, lib, object, select)
- local args, argLabel = buildLibArgs(lib, object, select)
+ local argStr, argLabel, args = buildLibArgs(lib, object, select)
local returns = buildLibReturns(lib)
local enum = buildEnum(lib)
local tip = lib.description
local doc = buildDoc(lib)
local headLen = #('function %s('):format(name)
- local title = ('function %s(%s)%s'):format(name, args, returns)
+ local title = ('function %s(%s)%s'):format(name, argStr, returns)
if argLabel then
argLabel[1] = argLabel[1] + headLen
argLabel[2] = argLabel[2] + headLen
@@ -209,5 +213,6 @@ return function (name, lib, object, select)
enum = enum,
argLabel = argLabel,
doc = doc,
+ args = args,
}
end