diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2022-12-08 18:45:24 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2022-12-08 18:45:24 +0800 |
commit | d4e35887aba9ed3794d5694a19b976eed5a68269 (patch) | |
tree | 702398520c060615da7bfdf5c1075014d1763262 /script/vm/sign.lua | |
parent | 9bcc9d55cd511c8e27930e6b1629a4b63bfa79c5 (diff) | |
download | lua-language-server-d4e35887aba9ed3794d5694a19b976eed5a68269.zip |
cleanup
Diffstat (limited to 'script/vm/sign.lua')
-rw-r--r-- | script/vm/sign.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/script/vm/sign.lua b/script/vm/sign.lua index b70aaec5..10b08884 100644 --- a/script/vm/sign.lua +++ b/script/vm/sign.lua @@ -91,7 +91,7 @@ function mt:resolve(uri, args) if n.type == 'global' and n.cate == 'type' then -- ---@field [integer]: number -> T[] ---@cast n vm.global - vm.getClassFields(uri, n, vm.declareGlobal('type', 'integer'), false, function (field) + vm.getClassFields(uri, n, vm.declareGlobal('type', 'integer'), function (field) resolve(object.node, vm.compileNode(field.extends)) end) end |