LUA_LUA Flashcards
1
Q
lua_CodeCoverage
A
Enables code coverage
2
Q
lua_debugger
A
Enables the script debugger.
1 to trigger on breakpoints and errors
2 to only trigger on errors
Usage: lua_debugger [0/1/2]
3
Q
lua_debugger_show
A
Shows the Lua debugger window
4
Q
lua_dump_coverage
A
Dumps lua states
5
Q
lua_dump_state
A
Dumps the current state of the lua memory (defined symbols and values) into the file LuaState.txt
6
Q
lua_garbagecollect
A
Forces a garbage collection of the lua state
7
Q
lua_reload_script
A
Reloads given script files and their dependencies
8
Q
lua_stackonmalloc
A
Enables/disables logging of the called lua functions and respective callstacks, whenever a new lua object is instantiated.
9
Q
lua_StopOnError
A
Stops on error