mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.debug: Produce a sensible name for nameless upvalues to C functions
This commit is contained in:
parent
9f3c47fb9f
commit
2855a2ce0a
1 changed files with 1 additions and 0 deletions
|
@ -47,6 +47,7 @@ local function get_upvalues_table(func)
|
|||
for upvalue_num = 1, math.huge do
|
||||
local name, value = debug.getupvalue(func, upvalue_num);
|
||||
if not name then break; end
|
||||
if name == "" then name = ("[%d]"):format(upvalue_num); end
|
||||
table.insert(upvalues, { name = name, value = value });
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue