Lua function
debug.getfenv
Summary
Returns the environment of an object
Prototype
t = debug.getfenv (obj)
Description
Returns the environment of object obj. This differs a bit from the base function getfenv, which takes a function or a level number, and converts the level number into a function. The debug version simply returns the environment of the argument, which is only meaningful for objects of type function, userdata or thread.
See Also ...
Topics
Lua base functions
Lua bc (big number) functions
Lua bit manipulation functions
Lua coroutine functions
Lua debug functions
Lua io functions
Lua math functions
Lua os functions
Lua package functions
Lua PCRE regular expression functions
Lua script extensions
Lua string functions
Lua table functions
Lua utilities
Scripting
Lua functions
debug.debug (Enters interactive debugging)
debug.gethook (Returns the current hook settings)
debug.getinfo (Returns a table with information about a function)
debug.getlocal (Returns name and value of a local variable)
debug.getmetatable (Returns the metatable of the given object)
debug.getregistry (Returns the registry table)
debug.getupvalue (Returns the name and value of an upvalue)
debug.setfenv (Sets the environment of an object)
debug.sethook (Sets a debug hook function)
debug.setlocal (Sets the value of the local variable)
debug.setmetatable (Sets the metatable for an object)
debug.setupvalue (Sets an upvalue for a function)
debug.traceback (Returns a string with a traceback of the stack call)
(Help topic: lua=debug.getfenv)
Documentation contents page
|