summaryrefslogtreecommitdiff
path: root/script/core/guide.lua
diff options
context:
space:
mode:
Diffstat (limited to 'script/core/guide.lua')
-rw-r--r--script/core/guide.lua5
1 files changed, 2 insertions, 3 deletions
diff --git a/script/core/guide.lua b/script/core/guide.lua
index 4ce1edf9..5e3b6693 100644
--- a/script/core/guide.lua
+++ b/script/core/guide.lua
@@ -570,10 +570,10 @@ end
--- 遍历所有指定类型的source
function m.eachSourceType(ast, type, callback)
- local cache = ast.typeCache
+ local cache = ast._typeCache
if not cache then
cache = {}
- ast.typeCache = cache
+ ast._typeCache = cache
m.eachSource(ast, function (source)
local tp = source.type
if not tp then
@@ -2239,7 +2239,6 @@ function m.checkSameSimpleInCallInSameFile(status, func, args, index)
end
end
end
- -- generic cannot cache
cache[index] = results
end
return results