summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author最萌小汐 <sumneko@hotmail.com>2022-04-08 03:17:19 +0800
committer最萌小汐 <sumneko@hotmail.com>2022-04-08 03:17:19 +0800
commit5362015b546b94c124e8add5e11ba261105f439a (patch)
tree650ec9709bc02f43e0c26bfbd4d6dc9b5fd90d61
parent8046578f19aecfdc3af4ce8408d5517ad314c915 (diff)
downloadlua-language-server-5362015b546b94c124e8add5e11ba261105f439a.zip
update
-rw-r--r--script/core/rename.lua52
-rw-r--r--script/vm/ref.lua12
2 files changed, 50 insertions, 14 deletions
diff --git a/script/core/rename.lua b/script/core/rename.lua
index 2ee1d273..e95186c1 100644
--- a/script/core/rename.lua
+++ b/script/core/rename.lua
@@ -3,6 +3,7 @@ local vm = require 'vm'
local util = require 'utility'
local findSource = require 'core.find-source'
local guide = require 'parser.guide'
+local globalMgr = require 'vm.global-manager'
local Forcing
@@ -180,17 +181,36 @@ end
---@async
local function ofField(source, newname, callback)
- local key = guide.getKeyName(source)
- for _, src in ipairs(vm.getRefs(source)) do
- ofFieldThen(key, src, newname, callback)
+ local key = guide.getKeyName(source)
+ local mark = {}
+ local refs = vm.getRefs(source)
+ for _, ref in ipairs(refs) do
+ if not mark[ref] then
+ mark[ref] = true
+ ofFieldThen(key, ref, newname, callback)
+ end
+ end
+ local defs = vm.getDefs(source)
+ for _, def in ipairs(defs) do
+ if not mark[def] then
+ mark[def] = true
+ ofFieldThen(key, def, newname, callback)
+ end
end
end
---@async
local function ofGlobal(source, newname, callback)
local key = guide.getKeyName(source)
- for _, src in ipairs(vm.getRefs(source)) do
- ofFieldThen(key, src, newname, callback)
+ local global = globalMgr.getGlobal('variable', key)
+ if not global then
+ return
+ end
+ for _, set in ipairs(global:getSets()) do
+ ofFieldThen(key, set, newname, callback)
+ end
+ for _, get in ipairs(global:getGets()) do
+ ofFieldThen(key, get, newname, callback)
end
end
@@ -204,13 +224,21 @@ end
---@async
local function ofDocTypeName(source, newname, callback)
local oldname = source[1]
- for _, doc in ipairs(vm.getRefs(source)) do
- if doc.type == 'doc.class.name'
- or doc.type == 'doc.type.name'
- or doc.type == 'doc.alias.name' then
- if oldname == doc[1] then
- callback(doc, doc.start, doc.finish, newname)
- end
+ local global = globalMgr.getGlobal('type', oldname)
+ if not global then
+ return
+ end
+ for _, doc in ipairs(global:getSets()) do
+ if doc.type == 'doc.class' then
+ callback(doc, doc.class.start, doc.class.finish, newname)
+ end
+ if doc.type == 'doc.alias' then
+ callback(doc, doc.alias.start, doc.alias.finish, newname)
+ end
+ end
+ for _, doc in ipairs(global:getGets()) do
+ if doc.type == 'doc.type.name' then
+ callback(doc, doc.start, doc.finish, newname)
end
end
end
diff --git a/script/vm/ref.lua b/script/vm/ref.lua
index 7849fda9..052d74eb 100644
--- a/script/vm/ref.lua
+++ b/script/vm/ref.lua
@@ -85,15 +85,23 @@ simpleSwitch = util.switch()
local function searchInAllFiles(suri, searcher, notify)
searcher(suri)
+ local uris = {}
for uri in files.eachFile(suri) do
if not vm.isMetaFile(uri)
and suri ~= uri then
+ uris[#uris+1] = uri
+ end
+ end
+
+ for _, uri in ipairs(uris) do
+ if notify then
local continue = notify(uri)
if continue == false then
break
end
- searcher(uri)
end
+ await.delay()
+ searcher(uri)
end
end
@@ -286,7 +294,7 @@ function vm.getRefs(source, fileNotify)
searchBySimple(source, pushResult)
searchByLocalID(source, pushResult)
searchByNode(source, pushResult)
- searchByParentNode(source, pushResult, fileNotify or await.delay)
+ searchByParentNode(source, pushResult, fileNotify)
return results
end