Merge pull request #26 from andreashofer123/process

fix problem with recursive tables when using the 'process' option
master
Enrique García 9 years ago
commit 833b0bc183
  1. 42
      inspect.lua
  2. 6
      spec/inspect_spec.lua

@ -164,29 +164,33 @@ local function makePath(path, ...)
return newPath return newPath
end end
local function processRecursive(process, item, path) local function processRecursive(process, item, path, visited)
if item == nil then return nil end
if item == nil then return nil end
local processed = process(item, path) if visited[item] then return visited[item] end
if type(processed) == 'table' then
local processedCopy = {} local processed = process(item, path)
local processedKey if type(processed) == 'table' then
local processedCopy = {}
for k,v in pairs(processed) do visited[item] = processedCopy
processedKey = processRecursive(process, k, makePath(path, k, inspect.KEY)) local processedKey
if processedKey ~= nil then
processedCopy[processedKey] = processRecursive(process, v, makePath(path, processedKey)) for k,v in pairs(processed) do
processedKey = processRecursive(process, k, makePath(path, k, inspect.KEY), visited)
if processedKey ~= nil then
processedCopy[processedKey] = processRecursive(process, v, makePath(path, processedKey), visited)
end
end end
end
local mt = processRecursive(process, getmetatable(processed), makePath(path, inspect.METATABLE)) local mt = processRecursive(process, getmetatable(processed), makePath(path, inspect.METATABLE), visited)
setmetatable(processedCopy, mt) setmetatable(processedCopy, mt)
processed = processedCopy processed = processedCopy
end end
return processed return processed
end end
------------------------------------------------------------------- -------------------------------------------------------------------
local Inspector = {} local Inspector = {}
@ -315,7 +319,7 @@ function inspect.inspect(root, options)
local process = options.process local process = options.process
if process then if process then
root = processRecursive(process, root, {}) root = processRecursive(process, root, {}, {})
end end
local inspector = setmetatable({ local inspector = setmetatable({

@ -315,6 +315,12 @@ describe( 'inspect', function()
}, items) }, items)
end) end)
it('handles recursive tables correctly', function()
local tbl = { 1,2,3}
tbl.loop = tbl
inspect(tbl, { process=function(x) return x end})
end)
end) end)
describe('metatables', function() describe('metatables', function()

Loading…
Cancel
Save