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

---@class EmmyReturn
local mt = {}
mt.__index = mt
mt.type = 'emmy.return'

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({
        source = source.id,
        _manager = manager,
    }, mt)
    return self
end