diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2022-12-22 22:09:22 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2022-12-22 22:09:22 +0800 |
commit | 21030f41d13e00a4a123f8e499f3415c4b8498dc (patch) | |
tree | 2f9b7ee4a986a94dad1edee4e322f31429f6aa66 /script/vm/def.lua | |
parent | 235a3049c63836b686d1b81fe6bb4775b4021449 (diff) | |
download | lua-language-server-21030f41d13e00a4a123f8e499f3415c4b8498dc.zip |
cleanup
Diffstat (limited to 'script/vm/def.lua')
-rw-r--r-- | script/vm/def.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/script/vm/def.lua b/script/vm/def.lua index 09b7193f..c9558234 100644 --- a/script/vm/def.lua +++ b/script/vm/def.lua @@ -33,7 +33,7 @@ end ---@param source parser.object ---@param pushResult fun(src: parser.object) local function searchByLocalID(source, pushResult) - local idSources = vm.getLocalSets(source) + local idSources = vm.getVariableSets(source) if not idSources then return end |