Implement module section types "Constructors" (#32) #36

Merged
Aire-One merged 2 commits from feat/#32 into master 2022-12-10 00:20:29 +01:00
1 changed files with 5 additions and 0 deletions
Showing only changes of commit 4a10957c57 - Show all commits

View File

@ -21,7 +21,12 @@ $(snippets.indent(snippets.render_record_functions(module.methods)))
# if #module.properties ~= 0 then
-- Object properties
$(snippets.indent(snippets.render_record_properties(module.properties)))
# end -- /properties
# if #module.constructors ~= 0 then
-- Constructors
$(snippets.indent(snippets.render_record_functions(module.constructors)))
# end -- /constructors
end
return $(module.record_name)