We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2616545 commit e65ac4dCopy full SHA for e65ac4d
builtin/misc_helpers.lua
@@ -57,7 +57,7 @@ function dump(o, dumped)
57
dumped[o] = true
58
local t = {}
59
for k,v in pairs(o) do
60
- t[#t+1] = "" .. dump(k, dumped) .. " = " .. dump(v, dumped)
+ t[#t+1] = "[" .. dump(k, dumped) .. "] = " .. dump(v, dumped)
61
end
62
return "{" .. table.concat(t, ", ") .. "}"
63
elseif type(o) == "boolean" then
0 commit comments