From 3d293d3e68bef5c7f39828cd592faaa9d2a74332 Mon Sep 17 00:00:00 2001 From: Gabriel Tofvesson Date: Sat, 30 Nov 2024 00:20:10 +0100 Subject: [PATCH] Implement default debugger REPL loop --- debugger.lua | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/debugger.lua b/debugger.lua index 711711a..0f7c90c 100644 --- a/debugger.lua +++ b/debugger.lua @@ -43,4 +43,18 @@ local function debugREPL(onResult, debugArgs) return success, (not success and retval) or nil end -return { debugREPL = debugREPL, execDebug = execDebug } \ No newline at end of file +local function hookDebugger(context, Logger) + Logger = Logger or require("logging").getGlobalLogger() + + local result, retval + repeat + result, retval = debugREPL(function(r) + Logger:error("->", r) + end, context) + if not result then + Logger:error("x>", retval) + end + until result +end + +return { debugREPL = debugREPL, execDebug = execDebug, hookDebugger = hookDebugger } \ No newline at end of file