Erase, not used

This commit is contained in:
Marcos Kirsch 2015-02-22 16:05:10 -06:00
parent 6ba7c02381
commit 5c1404dcea

View File

@ -1,34 +0,0 @@
-- Print anything - including nested tables
-- Based on but modified from:
-- http://lua-users.org/wiki/TableSerialization
--module("TablePrinter", package.seeall)
local function printTable(tt, indent, done)
done = done or {}
indent = indent or 0
if tt == nil then
print("nil")
else
if type(tt) == "table" then
for key, value in pairs (tt) do
print(string.rep (" ", indent)) -- indent it
if type (value) == "table" and not done [value] then
done [value] = true
print(string.format("[%s] => table", tostring (key)));
print(string.rep (" ", indent+4)) -- indent it
print("(");
printTable (value, indent + 7, done)
print(string.rep (" ", indent+4)) -- indent it
print(")");
else
print(string.format("[%s] => %s",
tostring (key), tostring(value)))
end
end
else
print(tt)
end
end
end
return printTable