sokoban.love/0102-send_errors_to_output

10 lines
508 B
Plaintext
Raw Normal View History

send_errors_to_output = function(err)
local callstack = debug.traceback('', 3)
local error_with_callstack = cleaned_up_frame(tostring(err))..'\n'..cleaned_up_callstack(callstack)
2023-12-16 00:18:42 +00:00
table.insert(Current_pane.output_editor_state.lines, {data=''})
Current_pane.output_editor_state.cursor1 = {line=#Current_pane.output_editor_state.lines, pos=1}
Text.redraw_all(Current_pane.output_editor_state)
2023-12-16 00:18:42 +00:00
Text.insert_text(Current_pane.output_editor_state, error_with_callstack)
clear_handlers()
2024-01-01 00:59:34 +00:00
Show_code = true
end