Difference between revisions of "Debug"
Line 9: | Line 9: | ||
| style="width: 50%; vertical-align:top;"| | | style="width: 50%; vertical-align:top;"| | ||
=== <translate>Methods</translate> === | === <translate>Methods</translate> === | ||
− | [[Special:MyLanguage/debug.debug|debug.debug]] ''<translate>enters interactive debug mode, line with only "cont" terminates</translate>''<br/><!-- GIDEROSMTD:debug.debug --> | + | [[Special:MyLanguage/debug.debug|debug.debug]] ''<translate>enters interactive debug mode, line with only "cont" terminates</translate>''<br/><!-- GIDEROSMTD:debug.debug() enters interactive debug mode, line with only "cont" terminates --> |
− | [[Special:MyLanguage/debug.gethook|debug.gethook]] ''<translate>returns current hook function, hook mask, hook count</translate>''<br/><!-- GIDEROSMTD:debug.gethook --> | + | [[Special:MyLanguage/debug.gethook|debug.gethook]] ''<translate>returns current hook function, hook mask, hook count</translate>''<br/><!-- GIDEROSMTD:debug.gethook() returns current hook function, hook mask, hook count --> |
− | [[Special:MyLanguage/debug.getinfo|debug.getinfo]] ''<translate>returns table with information about a function</translate>''<br/><!-- GIDEROSMTD:debug.getinfo --> | + | [[Special:MyLanguage/debug.getinfo|debug.getinfo]] ''<translate>returns table with information about a function</translate>''<br/><!-- GIDEROSMTD:debug.getinfo(function,what) returns table with information about a function --> |
− | [[Special:MyLanguage/debug.getlocal|debug.getlocal]] ''<translate>returns name and value of local variable with index local at stack level</translate>''<br/><!-- GIDEROSMTD:debug.getlocal --> | + | [[Special:MyLanguage/debug.getlocal|debug.getlocal]] ''<translate>returns name and value of local variable with index local at stack level</translate>''<br/><!-- GIDEROSMTD:debug.getlocal(level,local) returns name and value of local variable with index local at stack level --> |
− | [[Special:MyLanguage/debug.getupvalue|debug.getupvalue]] ''<translate>returns name and value of upvalue with index up of function func</translate>''<br/><!-- GIDEROSMTD:debug.getupvalue --> | + | [[Special:MyLanguage/debug.getupvalue|debug.getupvalue]] ''<translate>returns name and value of upvalue with index up of function func</translate>''<br/><!-- GIDEROSMTD:debug.getupvalue(func,up) returns name and value of upvalue with index up of function func --> |
− | [[Special:MyLanguage/debug.sethook|debug.sethook]] ''<translate>sets given function as a hook, mask="[crl]"</translate>''<br/><!-- GIDEROSMTD:debug.sethook --> | + | [[Special:MyLanguage/debug.sethook|debug.sethook]] ''<translate>sets given function as a hook, mask="[crl]"</translate>''<br/><!-- GIDEROSMTD:debug.sethook(hook,mask,count) sets given function as a hook, mask="[crl]" --> |
− | [[Special:MyLanguage/debug.setlocal|debug.setlocal]] ''<translate>sets local variable with index local at stack level with value</translate>''<br/><!-- GIDEROSMTD:debug.setlocal --> | + | [[Special:MyLanguage/debug.setlocal|debug.setlocal]] ''<translate>sets local variable with index local at stack level with value</translate>''<br/><!-- GIDEROSMTD:debug.setlocal(level,local,value) sets local variable with index local at stack level with value --> |
− | [[Special:MyLanguage/debug.settypemt|debug.settypemt]] ''<translate>Set meta table type</translate>''<br/><!-- GIDEROSMTD:debug.settypemt --> | + | [[Special:MyLanguage/debug.settypemt|debug.settypemt]] ''<translate>Set meta table type</translate>''<br/><!-- GIDEROSMTD:debug.settypemt() Set meta table type --> |
− | [[Special:MyLanguage/debug.setupvalue|debug.setupvalue]] ''<translate>sets upvalue with index up of function func with value</translate>''<br/><!-- GIDEROSMTD:debug.setupvalue --> | + | [[Special:MyLanguage/debug.setupvalue|debug.setupvalue]] ''<translate>sets upvalue with index up of function func with value</translate>''<br/><!-- GIDEROSMTD:debug.setupvalue(func,up,value) sets upvalue with index up of function func with value --> |
− | [[Special:MyLanguage/debug.traceback|debug.traceback]] ''<translate>returns a string with a traceback of the call stack</translate>''<br/><!-- GIDEROSMTD:debug.traceback --> | + | [[Special:MyLanguage/debug.traceback|debug.traceback]] ''<translate>returns a string with a traceback of the call stack</translate>''<br/><!-- GIDEROSMTD:debug.traceback(message,level) returns a string with a traceback of the call stack --> |
| style="width: 50%; vertical-align:top;"| | | style="width: 50%; vertical-align:top;"| | ||
=== <translate>Events</translate> === | === <translate>Events</translate> === | ||
=== <translate>Constants</translate> === | === <translate>Constants</translate> === | ||
|} | |} |
Revision as of 15:33, 13 September 2018
Supported platforms:
Available since: Gideros 2011.6
Description
The debug library does not give you a debugger for Lua, but it offers all the primitives that you need for writing a debugger for Lua. For performance reasons, the official interface to these primitives is through the C API. The debug library in Lua is a way to access these functions directly within Lua code. This library declares all its functions inside the debug table.
Methodsdebug.debug enters interactive debug mode, line with only "cont" terminates |
EventsConstants |