summaryrefslogtreecommitdiff
path: root/script/vm/getMeta.lua
blob: aebef1a7cc5eaeaf499bc2efd28af699c22ca1b7 (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
51
52
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)
        for _, src in ipairs(vm.getFields(mt)) do
            if vm.getKeyName(src) == 's|__index' then
                if src.value then
                    for _, valueSrc in ipairs(vm.getFields(src.value)) do
                        callback(valueSrc)
                    end
                end
            end
        end
    end)
end

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