摘要:
function SetMetaTableIndex(t, index) if t == nil or index == nil then error return end local mt = getmetatable(t) if not mt then mt = {} end if not mt 阅读全文
摘要:
function PrintTable(node) if not node or type(node) ~= "table" then return tostring(node) end local depthBufferHelper = {} local function tab(amt) if 阅读全文