blob: c21958100e52009cb119b8f38fb1f8cbd1ed26c7 (
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
|
local listMgr = require 'vm.list'
local function buildName(source)
local names = {}
for i, type in ipairs(source) do
names[i] = type[1]
end
return table.concat(names, '|')
end
local mt = {}
mt.__index = mt
mt.type = 'emmy.type'
function mt:getType()
return self.name
end
function mt:getName()
return self.name
end
function mt:getSource()
return listMgr.get(self.source)
end
function mt:getClass()
local class = self._manager:eachClass(self.name, function (class)
return class
end)
return class
end
return function (manager, source)
local self = setmetatable({
name = buildName(source),
source = source.id,
_manager = manager,
}, mt)
return self
end
|