blob: dc32096c0b4d37ee6e99ea34f994dbe79d28ceae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
--- lam.pp
local m = {}
local type = require "type"
function m.dump (x, lvl)
lvl = lvl or 0
local space = string.rep(" ", lvl)
local output = ""
--[[if getmetatable(x) and getmetatable(x).__tostring then
output = output .. tostring(x)
else]]if type.luatype(x) == "table" then
local subo = ""
for k,v in pairs(x) do
if v == x then
v = "self"
else
v = m.dump(v, lvl+2)
end
subo = subo .. string.format("\n%s[%s] = %s,",
(space.." "), k, v)
end
output = output .. string.format("\n%s{%s\n%s}",
space, subo, space)
else
output = output .. tostring(x)
end
return output
end
function m.pp (x)
print(m.dump(x))
end
---
return m
|