Add better error handling for debugger

This commit is contained in:
Gabriel Tofvesson 2024-11-30 00:00:05 +01:00
parent 4c2e732607
commit 739149d852

View File

@ -28,14 +28,19 @@ end
local function debugREPL(onResult, debugArgs) local function debugREPL(onResult, debugArgs)
local globalEnv = copyObject(_ENV) local globalEnv = copyObject(_ENV)
globalEnv._debug = debugArgs globalEnv._debug = debugArgs
local shouldExit = false
globalEnv.exit = function()
shouldExit = true
end
local result, retval local result, retval
repeat repeat
result, retval = execDebug(globalEnv) result, retval = execDebug(globalEnv)
if result and type(onResult) == "function" then if result and type(onResult) == "function" then
onResult(retval) onResult(retval)
end end
until not result until shouldExit or not result
return retval local success = result and shouldExit
return success, (not success and retval) or nil
end end
return { debugREPL = debugREPL, execDebug = execDebug } return { debugREPL = debugREPL, execDebug = execDebug }