Difference between revisions of "Lua:debug continueFromBreakpoint"
Jump to navigation
Jump to search
Line 9: | Line 9: | ||
* "co_runtill": Run until the given address. (This is not available in Lua, as there is no way to give an address. You can simulate it by setting a breakpoint at that address and then using "co_run".) | * "co_runtill": Run until the given address. (This is not available in Lua, as there is no way to give an address. You can simulate it by setting a breakpoint at that address and then using "co_run".) | ||
</onlyinclude> | </onlyinclude> | ||
+ | |||
+ | |||
+ | {{LuaSeeAlso}} |
Revision as of 21:59, 19 March 2017
debug_continueFromBreakpoint(method)
Methods are:[debuggertypedefinitions.pas]
- "co_stepover": Next instruction in current function; steps over function calls.
- "co_stepinto": Next instruction; enters function calls.
- "co_run": Resume normal execution.
- "co_runtill": Run until the given address. (This is not available in Lua, as there is no way to give an address. You can simulate it by setting a breakpoint at that address and then using "co_run".)