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 /lobject.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 'lobject.h')
-rw-r--r-- | lobject.h | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lobject.h,v 2.11 2005/02/18 12:40:02 roberto Exp roberto $ | 2 | ** $Id: lobject.h,v 2.12 2005/04/25 19:24:10 roberto Exp roberto $ |
3 | ** Type definitions for Lua objects | 3 | ** Type definitions for Lua objects |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -244,7 +244,8 @@ typedef struct Proto { | |||
244 | int sizelineinfo; | 244 | int sizelineinfo; |
245 | int sizep; /* size of `p' */ | 245 | int sizep; /* size of `p' */ |
246 | int sizelocvars; | 246 | int sizelocvars; |
247 | int lineDefined; | 247 | int linedefined; |
248 | int lastlinedefined; | ||
248 | GCObject *gclist; | 249 | GCObject *gclist; |
249 | lu_byte nups; /* number of upvalues */ | 250 | lu_byte nups; /* number of upvalues */ |
250 | lu_byte numparams; | 251 | lu_byte numparams; |