summaryrefslogtreecommitdiff
path: root/script-beta/vm/getMeta.lua
blob: 73d01aef792cc955cbad0ec41c12dd2d44da3cd3 (plain)
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
local vm = require 'vm.vm'

local function eachMetaOfArg1(source, callback)
    local node, index = vm.getArgInfo(source)
    local special = vm.getSpecial(node)
    if special == 'setmetatable' and index == 1 then
        local mt = node.next.args[2]
        if mt then
            callback(mt)
        end
    end
end

local function eachMetaOfRecv(source, callback)
    if not source or source.type ~= 'select' then
        return
    end
    if source.index ~= 1 then
        return
    end
    local call = source.vararg
    if not call or call.type ~= 'call' then
        return
    end
    local special = vm.getSpecial(call.node)
    if special ~= 'setmetatable' then
        return
    end
    local mt = call.args[2]
    if mt then
        callback(mt)
    end
end

function vm.eachMetaValue(source, callback)
    vm.eachMeta(source, function (mt)
        vm.eachField(mt, function (src)
            if vm.getKeyName(src) == 's|__index' then
                if src.value then
                    vm.eachField(src.value, callback)
                end
            end
        end)
    end)
end

function vm.eachMeta(source, callback)
    eachMetaOfArg1(source, callback)
    eachMetaOfRecv(source.value, callback)
end