blob: 1fc979235cd17d4063e68b8f69f51158fc460739 (
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
|
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
function mt:bindGeneric(generic)
if generic then
self._bindGeneric = generic
else
return self._bindGeneric
end
end
return function (manager, source, name)
local self = setmetatable({
source = source.id,
name = name and name[1],
option = source.option,
_manager = manager,
}, mt)
return self
end
|