debug.getupvalue (f, up)
This function returns the name and the value of the upvalue with index up
of the function f
. The function returns nil if there is no upvalue with the given index.
Variable names starting with '(
' (open parenthesis) represent variables with no known names (variables from chunks saved without debug information).
Please login to continue.