1
0

APIDump: Added creating the list of unexported-documented API objects.

This commit is contained in:
madmaxoft 2013-09-14 22:34:19 +02:00
parent 66aee0ec68
commit 24daabdbfc

View File

@ -257,6 +257,29 @@ function DumpAPIHtml()
f:close();
end
-- List the unexported documented API objects:
f = io.open("API/unexported-documented.txt", "w");
if (f ~= nil) then
for clsname, cls in pairs(g_APIDesc.Classes) do
if not(cls.IsExported) then
-- The whole class is not exported
f:write("class\t" .. clsname .. "\n");
else
for fnname, fnapi in pairs(cls.Functions) do
if not(fnapi.IsExported) then
f:write("func\t" .. clsname .. "." .. fnname .. "\n");
end
end -- for j, fn - cls.Functions[]
for cnname, cnapi in pairs(cls.Constants) do
if not(cnapi.IsExported) then
f:write("const\t" .. clsname .. "." .. cnname .. "\n");
end
end -- for j, fn - cls.Functions[]
end
end -- for i, cls - g_APIDesc.Classes[]
f:close();
end
LOG("API subfolder written");
end
@ -316,6 +339,7 @@ function ReadDescriptions(a_API)
local APIDesc = g_APIDesc.Classes[cls.Name];
if (APIDesc ~= nil) then
APIDesc.IsExported = true;
cls.Desc = APIDesc.Desc;
cls.AdditionalInfo = APIDesc.AdditionalInfo;