summaryrefslogtreecommitdiff
path: root/server/src/emmy/alias.lua
blob: cec23b786df1d52891fdefdafcd7436d4fb13699 (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
local listMgr = require 'vm.list'

---@class EmmyAlias
local mt = {}
mt.__index = mt
mt.type = 'emmy.alias'

function mt:getName()
    return self.name
end

function mt:getSource()
    return listMgr.get(self.source)
end

function mt:bindType(type)
    if type then
        self._bindType = type
    else
        return self._bindType
    end
end

return function (manager, source)
    local self = setmetatable({
        name = source[1][1],
        source = source.id,
        _manager = manager,
    }, mt)
    return self
end