diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2005-05-05 17:47:02 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2005-05-05 17:47:02 -0300 |
commit | 1ab2b93462753b5f500ada31353acc444d4e7b7c (patch) | |
tree | 0934f3891707f446c3b0d57ba7827243bc1f6e22 /lua.h | |
parent | 6cf85dcc900c71687678bc316164142e76df7385 (diff) | |
download | lua-1ab2b93462753b5f500ada31353acc444d4e7b7c.tar.gz lua-1ab2b93462753b5f500ada31353acc444d4e7b7c.tar.bz2 lua-1ab2b93462753b5f500ada31353acc444d4e7b7c.zip |
debug information for last line of a function definition
Diffstat (limited to 'lua.h')
-rw-r--r-- | lua.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lua.h,v 1.204 2005/03/23 17:51:11 roberto Exp roberto $ | 2 | ** $Id: lua.h,v 1.205 2005/03/28 17:17:53 roberto Exp roberto $ |
3 | ** Lua - An Extensible Extension Language | 3 | ** Lua - An Extensible Extension Language |
4 | ** Tecgraf: Computer Graphics Technology Group, PUC-Rio, Brazil | 4 | ** Tecgraf: Computer Graphics Technology Group, PUC-Rio, Brazil |
5 | ** http://www.lua.org mailto:info@lua.org | 5 | ** http://www.lua.org mailto:info@lua.org |
@@ -345,6 +345,7 @@ struct lua_Debug { | |||
345 | int currentline; /* (l) */ | 345 | int currentline; /* (l) */ |
346 | int nups; /* (u) number of upvalues */ | 346 | int nups; /* (u) number of upvalues */ |
347 | int linedefined; /* (S) */ | 347 | int linedefined; /* (S) */ |
348 | int lastlinedefined; /* (S) */ | ||
348 | char short_src[LUA_IDSIZE]; /* (S) */ | 349 | char short_src[LUA_IDSIZE]; /* (S) */ |
349 | /* private part */ | 350 | /* private part */ |
350 | int i_ci; /* active function */ | 351 | int i_ci; /* active function */ |