Difference between revisions of "Debug.debug"

From GiderosMobile
m (Text replacement - "<source" to "<syntaxhighlight")
m (Text replacement - "</source>" to "</syntaxhighlight>")
 
Line 9: Line 9:
 
<syntaxhighlight lang="lua">
 
<syntaxhighlight lang="lua">
 
debug.debug()
 
debug.debug()
</source>
+
</syntaxhighlight>
  
 
{{Debug}}
 
{{Debug}}

Latest revision as of 15:27, 13 July 2023


Available since: Gideros 2011.6
Class: debug

Description

Enters an interactive mode with the user, running each string that the user enters. Using simple commands and other debug facilities, the user can inspect global and local variables, change their values, evaluate expressions, and so on. A line containing only the word cont finishes this function, so that the caller continues its execution.

Note that commands for debug.debug are not lexically nested within any function, and so have no direct access to local variables.

debug.debug()