sokoban.love/0007-save_callstack

8 lines
438 B
Plaintext

-- Internal helper for animations.
-- Record the stack of function calls that led to any error within a coroutine.
-- Lua normally prints out errors with callstacks, but coroutines interrupt the stack unless we do some additional work.
save_callstack = function(err)
local callstack = debug.traceback('', --[[stack frame]]2)
Error_with_callstack = 'Error: ' .. cleaned_up_frame(tostring(err))..'\n'..cleaned_up_callstack(callstack)
end