This library providesthe functionality of the debug interface to Lua programs.You should exert care when using this library.The functions provided here should be used exclusively for debuggingand similar tasks, such as profiling.Please resist the temptation to use them as ausual programming tool:they can be very slow.Moreover, several of its functionsviolate some assumptions about Lua code(e.g., that variables local to a functioncannot be accessed from outside orthat userdata metatables cannot be changed by Lua code)and therefore can compromise otherwise secure code. |
|