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 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 }