APIDump: Ignoring some Lua internal stuff from API-scanning.
parent
ddda753f52
commit
a9969408e4
|
@ -152,10 +152,16 @@ function CreateAPITables()
|
||||||
end
|
end
|
||||||
|
|
||||||
for i, v in pairs(_G) do
|
for i, v in pairs(_G) do
|
||||||
if (type(v) == "table") then
|
if (
|
||||||
table.insert(API, ParseClass(i, v));
|
(v ~= _G) and -- don't want the global namespace
|
||||||
else
|
(v ~= _G.packages) and -- don't want any packages
|
||||||
Add(Globals, i, v);
|
(v ~= _G[".get"])
|
||||||
|
) then
|
||||||
|
if (type(v) == "table") then
|
||||||
|
table.insert(API, ParseClass(i, v));
|
||||||
|
else
|
||||||
|
Add(Globals, i, v);
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
SortClass(Globals);
|
SortClass(Globals);
|
||||||
|
|
Loading…
Reference in New Issue