APIDump: Renamed output for helper stuff.
Undocumented objects are output to _undocumented.lua Overdocumented objects are output to _unexported-documented.txt Missing pages are output to _missingPages.txt
This commit is contained in:
parent
22102b4a64
commit
1c0ab57d12
@ -308,7 +308,7 @@ function DumpAPIHtml()
|
|||||||
end
|
end
|
||||||
|
|
||||||
-- List the undocumented objects:
|
-- List the undocumented objects:
|
||||||
f = io.open("API/undocumented.lua", "w");
|
f = io.open("API/_undocumented.lua", "w");
|
||||||
if (f ~= nil) then
|
if (f ~= nil) then
|
||||||
f:write("\n-- This is the list of undocumented API objects, automatically generated by APIDump\n\n");
|
f:write("\n-- This is the list of undocumented API objects, automatically generated by APIDump\n\n");
|
||||||
f:write("g_APIDesc =\n{\n\tClasses =\n\t{\n");
|
f:write("g_APIDesc =\n{\n\tClasses =\n\t{\n");
|
||||||
@ -374,7 +374,7 @@ function DumpAPIHtml()
|
|||||||
end
|
end
|
||||||
|
|
||||||
-- List the unexported documented API objects:
|
-- List the unexported documented API objects:
|
||||||
f = io.open("API/unexported-documented.txt", "w");
|
f = io.open("API/_unexported-documented.txt", "w");
|
||||||
if (f ~= nil) then
|
if (f ~= nil) then
|
||||||
for clsname, cls in pairs(g_APIDesc.Classes) do
|
for clsname, cls in pairs(g_APIDesc.Classes) do
|
||||||
if not(cls.IsExported) then
|
if not(cls.IsExported) then
|
||||||
|
Loading…
Reference in New Issue
Block a user