cc-utilities/debugger.lua
2024-11-28 23:11:18 +01:00

37 lines
786 B
Lua

local function copyObject(o)
local obj = {}
for k,v in pairs(o) do
obj[k] = v
end
return obj
end
local function execDebug(env)
local input = io.input()
local result = { pcall(input.read, input, "*l") }
if not result[1] then
return false, result[2]
end
local func = load(result[2], "debug", "bt", env)
if type(func) ~= "function" then
return false, func
end
return pcall(func)
end
local function debugREPL(onResult, debugArgs)
local globalEnv = copyObject(_ENV)
globalEnv._debug = debugArgs
local result, retval
repeat
result, retval = execDebug(globalEnv)
if result and type(onResult) == "function" then
onResult(retval)
end
until not result
return retval
end
return { debugREPL = debugREPL, execDebug = execDebug }