diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2022-07-21 17:39:41 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2022-07-21 17:39:41 +0800 |
commit | 7699e4ba610e570199f0b8c9097a5cdeda472c40 (patch) | |
tree | 3a679f4de0cbca2d847f20f8114acaeb679f1c1c /script/vm/sign.lua | |
parent | 2adc24974ffa9b804e9b99a9b8f777a5220f7e89 (diff) | |
download | lua-language-server-7699e4ba610e570199f0b8c9097a5cdeda472c40.zip |
fix #1335
Diffstat (limited to 'script/vm/sign.lua')
-rw-r--r-- | script/vm/sign.lua | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/script/vm/sign.lua b/script/vm/sign.lua index a0478751..7c95fd08 100644 --- a/script/vm/sign.lua +++ b/script/vm/sign.lua @@ -63,6 +63,10 @@ function mt:resolve(uri, args, removeGeneric) resolve(object.node, vm.compileNode(field.extends)) end) end + if n.type == 'table' and #n >= 1 then + -- { x } / { ... } -> T[] + resolve(object.node, vm.compileNode(n[1])) + end end end if object.type == 'doc.type.table' then |