Compare commits
2 Commits
4c2e732607
...
c0d65f7f38
Author | SHA1 | Date | |
---|---|---|---|
![]() |
c0d65f7f38 | ||
![]() |
739149d852 |
@ -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 }
|
@ -8,12 +8,15 @@ local ItemStack = Sentinel:tag({}, Sentinel.ITEMSTACK)
|
|||||||
ItemStack.__index = ItemStack
|
ItemStack.__index = ItemStack
|
||||||
|
|
||||||
local function hookDebugger(context)
|
local function hookDebugger(context)
|
||||||
while true do
|
local result, retval
|
||||||
local errorCond = Debugger.debugREPL(function(retval)
|
repeat
|
||||||
Logger:error("->", retval)
|
result, retval = Debugger.debugREPL(function(r)
|
||||||
|
Logger:error("->", r)
|
||||||
end, context)
|
end, context)
|
||||||
Logger:error("x>", errorCond)
|
if not result then
|
||||||
end
|
Logger:error("x>", retval)
|
||||||
|
end
|
||||||
|
until result
|
||||||
end
|
end
|
||||||
|
|
||||||
function ItemStack:fromDetail(inv, detail, slot)
|
function ItemStack:fromDetail(inv, detail, slot)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user