xref: /llvm-project/lldb/test/API/commands/command/script/persistence.py (revision 2238dcc39358353cac21df75c3c3286ab20b8f53)
17406d236SPavel Labathimport lldb
27406d236SPavel Labath
37406d236SPavel Labathdebugger_copy = None
40a07c966SPavel Labathresult_copy = None
57406d236SPavel Labath
6*2238dcc3SJonas Devlieghere
77406d236SPavel Labathdef save_debugger(debugger, command, context, result, internal_dict):
80a07c966SPavel Labath    global debugger_copy, result_copy
97406d236SPavel Labath    debugger_copy = debugger
100a07c966SPavel Labath    result_copy = result
117406d236SPavel Labath    result.AppendMessage(str(debugger))
127406d236SPavel Labath    result.SetStatus(lldb.eReturnStatusSuccessFinishResult)
13