Skip to content

Latest commit

 

History

History
12 lines (9 loc) · 312 Bytes

debug.md

File metadata and controls

12 lines (9 loc) · 312 Bytes

debug

The standard Lua package debug is added some functions to help debugging.

debug.locals(level)

table containing the local variables at a given level level. The default level is the caller level (1). If level is a function, locals returns the names of the function parameters.