Does Lua support something like C’s __LINE__ macro, which returns the number of the current code line? I know Lua has a special built-in variable called _G, but I don’t see line number in there…
Does Lua support something like C’s __LINE__ macro, which returns the number of the
Share
From Lua using debug.getinfo, e.g.,
From C using lua_getinfo (This will return the linenumber inside lua code)
http://www.lua.org/manual/5.1/manual.html#lua_getinfo
http://www.lua.org/manual/5.1/manual.html#pdf-debug.getinfo