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
|
$(if custom_methods and #custom_methods > 0 then
OUT = [[
//
// Custom Methods
//
]]
for i=1,#custom_methods do
OUT=OUT..'\n'
OUT=OUT..custom_methods[i].return_type..[[ ${name}::]]..custom_methods[i].name..'('
if custom_methods[i].parameters then
for pnum=1,#custom_methods[i].parameters do
if not pnum == 1 then
OUT=OUT..', '
end
OUT=OUT..custom_methods[i].parameters[pnum].type ..' '.. custom_methods[i].parameters[pnum].var_name
end
end
OUT=OUT..[[ )
{
]]..custom_methods[i].body..[[
}
]]
end end)
|