util.serialization: Concise output for empty tables.

This commit is contained in:
Waqas Hussain 2009-11-23 19:35:24 +05:00
parent 3f95c8572c
commit 8d13f90bed

View file

@ -13,6 +13,7 @@ local t_insert = table.insert;
local t_concat = table.concat;
local error = error;
local pairs = pairs;
local next = next;
local debug_traceback = debug.traceback;
local log = require "util.logger".init("serialization");
@ -34,6 +35,7 @@ local function _simplesave(o, ind, t, func)
elseif type(o) == "string" then
func(t, (("%q"):format(o):gsub("\\\n", "\\n")));
elseif type(o) == "table" then
if next(o) then
func(t, "{\n");
for k,v in pairs(o) do
func(t, indent(ind));
@ -49,6 +51,9 @@ local function _simplesave(o, ind, t, func)
end
func(t, indent(ind-1));
func(t, "}");
else
func(t, "{}");
end
elseif type(o) == "boolean" then
func(t, (o and "true" or "false"));
else