-
Notifications
You must be signed in to change notification settings - Fork 6
Debugger
ζeh Matt edited this page Mar 9, 2019
·
2 revisions
Signals the debugger to step in.
-- @param [waitForDebugger=true] if false then it will not wait for the debugger to pause.
-- @return boolean success
debugger.stepIn(waitForDebugger)
Signals the debugger to step over.
-- @param [waitForDebugger=true] if false then it will not wait for the debugger to pause.
-- @return boolean success
debugger.stepOver(waitForDebugger)
Signals the debugger to resume the process.
-- @param [waitForDebugger=true] if false then it will not wait for the debugger to pause.
-- @return boolean success
debugger.run(waitForDebugger)
Waits for the debugger, will not return until the debugger paused.
-- @return boolean success
debugger.wait()
Returns if the debugger is currently running.
-- @return boolean
debugger.isRunning()
Switches the active thread to the specified thread.
-- @param threadId to switch to.
-- @return boolean
debugger.switchThread(threadId)