mirror of
https://github.com/kikito/inspect.lua.git
synced 2024-12-15 14:34:21 +00:00
avoid __len metamethod
This commit is contained in:
parent
96a1e6cc6f
commit
ec524dfc6a
@ -84,7 +84,7 @@ local function sortKeys(a, b)
|
|||||||
end
|
end
|
||||||
|
|
||||||
local function getNonSequentialKeys(t)
|
local function getNonSequentialKeys(t)
|
||||||
local keys, length = {}, #t
|
local keys, length = {}, rawlen(t)
|
||||||
for k,_ in pairs(t) do
|
for k,_ in pairs(t) do
|
||||||
if not isSequenceKey(k, length) then table.insert(keys, k) end
|
if not isSequenceKey(k, length) then table.insert(keys, k) end
|
||||||
end
|
end
|
||||||
@ -232,7 +232,7 @@ function Inspector:putTable(t)
|
|||||||
if self.tableAppearances[t] > 1 then self:puts('<', self:getId(t), '>') end
|
if self.tableAppearances[t] > 1 then self:puts('<', self:getId(t), '>') end
|
||||||
|
|
||||||
local nonSequentialKeys = getNonSequentialKeys(t)
|
local nonSequentialKeys = getNonSequentialKeys(t)
|
||||||
local length = #t
|
local length = rawlen(t)
|
||||||
local mt = getmetatable(t)
|
local mt = getmetatable(t)
|
||||||
local toStringResult = getToStringResultSafely(t, mt)
|
local toStringResult = getToStringResultSafely(t, mt)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user