Add locals to debug context

This commit is contained in:
Gabriel Tofvesson 2024-11-28 23:11:18 +01:00
parent 686c1e5808
commit e98014d29b

View File

@ -1,11 +1,19 @@
local function execDebug() 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 input = io.input()
local result = { pcall(input.read, input, "*l") } local result = { pcall(input.read, input, "*l") }
if not result[1] then if not result[1] then
return false, result[2] return false, result[2]
end end
local func = load("return " .. result[2]) local func = load(result[2], "debug", "bt", env)
if type(func) ~= "function" then if type(func) ~= "function" then
return false, func return false, func
end end
@ -13,10 +21,12 @@ local function execDebug()
return pcall(func) return pcall(func)
end end
local function debugREPL(onResult) local function debugREPL(onResult, debugArgs)
local globalEnv = copyObject(_ENV)
globalEnv._debug = debugArgs
local result, retval local result, retval
repeat repeat
result, retval = execDebug() result, retval = execDebug(globalEnv)
if result and type(onResult) == "function" then if result and type(onResult) == "function" then
onResult(retval) onResult(retval)
end end