docgen: add a pass to generate individual classes

This commit is contained in:
Daniel Kolesa 2017-03-03 16:26:04 +01:00
parent bc7561d8d5
commit 81c84999fd
1 changed files with 6 additions and 0 deletions

View File

@ -1583,6 +1583,12 @@ getopt.parse {
if not st or st == "classes" then
build_classes()
end
if st and st:match("%.") then
local cl = dtree.Class.by_name_get(st)
if cl then
build_class(cl)
end
end
if not st or st == "types" then
build_typedecls()
end