Do not allow collecting weak tables while they are being inspected

Fixes #22
This commit is contained in:
mpeterv 2015-11-27 14:04:02 +03:00
parent 2213313a94
commit daaefbd870
2 changed files with 27 additions and 2 deletions

View File

@ -114,14 +114,14 @@ local maxIdsMetaTable = {
local idsMetaTable = {
__index = function (self, typeName)
local col = setmetatable({}, {__mode = "kv"})
local col = {}
rawset(self, typeName, col)
return col
end
}
local function countTableAppearances(t, tableAppearances)
tableAppearances = tableAppearances or setmetatable({}, {__mode = "k"})
tableAppearances = tableAppearances or {}
if type(t) == 'table' then
if not tableAppearances[t] then

View File

@ -350,6 +350,31 @@ describe( 'inspect', function()
]]), inspect(bar))
end)
it('does not allow collecting weak tables while they are being inspected', function()
collectgarbage('stop')
finally(function() collectgarbage('restart') end)
local shimMetatable = {
__mode = 'v',
__index = function() return {} end,
__tostring = function() collectgarbage() return 'shim' end
}
local function shim() return setmetatable({}, shimMetatable) end
local t = shim()
t.key = shim()
assert.equals(unindent([[
{ -- shim
key = { -- shim
<metatable> = <1>{
__index = <function 1>,
__mode = "v",
__tostring = <function 2>
}
},
<metatable> = <table 1>
}
]]), inspect(t))
end)
describe('When a table is its own metatable', function()
it('accepts a table that is its own metatable without stack overflowing', function()
local x = {}