1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
|
local guide = require 'parser.guide'
local m = {}
function m:def(source, callback)
-- _ENV
local key = guide.getKeyName(source)
self:eachField(source.node, key, function (src, mode)
if mode == 'set' then
callback(src, mode)
end
end)
self:eachSpecial(function (name, src)
if name == '_G' then
local parent = src.parent
if guide.getKeyName(parent) == key then
self:childDef(parent, callback)
end
elseif name == 'rawset' then
local t, k = self:callArgOf(src.parent)
if self:getSpecialName(t) == '_G'
and guide.getKeyName(k) == key then
callback(src.parent, 'set')
end
end
end)
end
function m:ref(source, callback)
-- _ENV
local key = guide.getKeyName(source)
self:eachField(source.node, key, function (src, mode)
if mode == 'set' or mode == 'get' then
callback(src, mode)
end
end)
self:eachSpecial(function (name, src)
if name == '_G' then
local parent = src.parent
if guide.getKeyName(parent) == key then
self:childRef(parent, callback)
end
elseif name == 'rawset' then
local t, k = self:callArgOf(src.parent)
if self:getSpecialName(t) == '_G'
and guide.getKeyName(k) == key then
callback(src.parent, 'set')
end
elseif name == 'rawget' then
local t, k = self:callArgOf(src.parent)
if self:getSpecialName(t) == '_G'
and guide.getKeyName(k) == key then
callback(src.parent, 'get')
end
end
end)
end
function m:field(source, key, callback)
local global = guide.getKeyName(source)
local used = {}
self:eachField(source.node, global, function (src, mode)
if mode == 'get' then
used[src] = true
local parent = src.parent
if key == guide.getKeyName(parent) then
self:childRef(parent, callback)
end
end
end)
self:eachSpecial(function (name, src)
if name == 'setmetatable' then
local t, mt = self:callArgOf(src.parent)
if used[t] then
self:eachField(mt, 's|__index', function (src, mode)
if mode == 'set' then
self:eachValue(src, function (src)
self:eachField(src, key, callback)
end)
end
end)
end
end
end)
end
return m
|