Integrated Lua debugger to debug in real-time Script and Utility. The programming interface below allows you to manipulate the flow of the debugger, and access general information about the current debugging state.
See Also
Static Variables
Name | Description |
run | Determine wether or not the debugger is running. |
Declaration
|
lvmthread | Reference to the current LvmThread hooked by the debugger. |
Declaration
|
currentline | Current line hooked by the debugger. |
Declaration
|
event | Current EventType being debugged. |
Declaration
|
callstack | Stream that contains the latest callstack. |
Declaration
|
userdata | Stream that contains unique reference to all user data. |
Declaration
|
Variables
Name | Description |
revision | Current revision of the debugger callstack. |
Declaration
|
Functions
Name | Description |
Start | Start the local debugger. |
Declaration
|
Stop | Stop the debugger and release the LvmThread hook (if any). |
Declaration
|
Run | Continue the debugger execution. |
Declaration
|
Break | Break at the current instruction processed by the virtual machine. |
Declaration
|
StepOver | Step over the current instruction. |
Declaration
|
StepInto | Step into the current function. |
Declaration
|