diff --git a/inspect.lua b/inspect.lua index 7616fc5..08603a2 100644 --- a/inspect.lua +++ b/inspect.lua @@ -28,7 +28,7 @@ local inspect ={ ]] } -inspect.tostring = _G.tostring +local tostring = tostring inspect.KEY = setmetatable({}, {__tostring = function() return 'inspect.KEY' end}) inspect.METATABLE = setmetatable({}, {__tostring = function() return 'inspect.METATABLE' end}) @@ -112,7 +112,7 @@ local function getToStringResultSafely(t, mt) local str, ok if type(__tostring) == 'function' then ok, str = pcall(__tostring, t) - str = ok and str or 'error: ' .. inspect.tostring(str) + str = ok and str or 'error: ' .. tostring(str) end if type(str) == 'string' and #str > 0 then return str end end @@ -226,7 +226,7 @@ function Inspector:getId(v) self.maxIds[tv] = id self.ids[tv][v] = id end - return inspect.tostring(id) + return tostring(id) end function Inspector:putKey(k) @@ -238,7 +238,7 @@ end function Inspector:putTable(t) if t == inspect.KEY or t == inspect.METATABLE then - self:puts(inspect.tostring(t)) + self:puts(tostring(t)) elseif self:alreadyVisited(t) then self:puts('