From 739149d852184f52c3eceb23d78fd7d311b72230 Mon Sep 17 00:00:00 2001 From: Gabriel Tofvesson Date: Sat, 30 Nov 2024 00:00:05 +0100 Subject: [PATCH] Add better error handling for debugger --- debugger.lua | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/debugger.lua b/debugger.lua index 2bc63fb..711711a 100644 --- a/debugger.lua +++ b/debugger.lua @@ -28,14 +28,19 @@ end local function debugREPL(onResult, debugArgs) local globalEnv = copyObject(_ENV) globalEnv._debug = debugArgs + local shouldExit = false + globalEnv.exit = function() + shouldExit = true + end local result, retval repeat result, retval = execDebug(globalEnv) if result and type(onResult) == "function" then onResult(retval) end - until not result - return retval + until shouldExit or not result + local success = result and shouldExit + return success, (not success and retval) or nil end return { debugREPL = debugREPL, execDebug = execDebug } \ No newline at end of file