summaryrefslogtreecommitdiff
path: root/script
diff options
context:
space:
mode:
author最萌小汐 <sumneko@hotmail.com>2021-05-11 22:07:47 +0800
committer最萌小汐 <sumneko@hotmail.com>2021-05-11 22:07:47 +0800
commit3b97d7d4d54755517db0fd776c006bbb37313967 (patch)
tree1172b521de749f0ce70e2500da7d30378678fc2e /script
parent9f8cc1de6737edfb3dbb3e092fa7ce892b06761d (diff)
downloadlua-language-server-3b97d7d4d54755517db0fd776c006bbb37313967.zip
stash
Diffstat (limited to 'script')
-rw-r--r--script/core/generic.lua8
-rw-r--r--script/parser/ast.lua5
2 files changed, 11 insertions, 2 deletions
diff --git a/script/core/generic.lua b/script/core/generic.lua
index 61ce55c4..9f203e69 100644
--- a/script/core/generic.lua
+++ b/script/core/generic.lua
@@ -96,9 +96,13 @@ local function createValue(closure, proto, callback, road)
return value
end
if proto.type == 'doc.type.array' then
- road[#road+1] = linker.SPLIT_CHAR
+ if road then
+ road[#road+1] = linker.SPLIT_CHAR
+ end
local node = createValue(closure, proto.node, callback, road)
- road[#road] = nil
+ if road then
+ road[#road] = nil
+ end
if not node then
return nil
end
diff --git a/script/parser/ast.lua b/script/parser/ast.lua
index 4f27d37d..47093f0e 100644
--- a/script/parser/ast.lua
+++ b/script/parser/ast.lua
@@ -1460,6 +1460,11 @@ local Defs = {
local values
if func then
local call = createCall(exp, func.finish + 1, exp.finish)
+ if #exp == 0 then
+ exp[1] = getSelect(func, 1)
+ exp[2] = getSelect(func, 2)
+ exp[3] = getSelect(func, 3)
+ end
call.node = func
call.start = inA
func.next = call