blob: 12ac06337f92911edc4b5a921a7bb52798bee796 (
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
local listMgr = require 'vm.list'
---@class EmmyParam
local mt = {}
mt.__index = mt
mt.type = 'emmy.param'
function mt:getName()
return self.name
end
function mt:getType()
if self._bindType then
return self._bindType:getType()
else
return 'any'
end
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
function mt:bindGeneric(generic)
if generic then
self._bindGeneric = generic
else
return self._bindGeneric
end
end
function mt:addEnum(enum)
self._enum[#self._enum+1] = enum
end
function mt:eachEnum(callback)
for _, enum in ipairs(self._enum) do
callback(enum)
end
end
function mt:setOption(option)
self._option = option
end
function mt:getOption()
return self._option
end
return function (manager, source)
local self = setmetatable({
source = source.id,
_manager = manager,
_enum = {},
}, mt)
if source.type == 'emmyParam' then
self.name = source[1][1]
elseif source.type == 'emmyVararg' then
self.name = '...'
end
return self
end
|