diff options
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 1.154 2002/11/14 11:51:50 roberto Exp roberto $ | 2 | ** $Id: lobject.h,v 1.155 2002/11/14 16:16:21 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 | */ |
@@ -214,7 +214,9 @@ typedef struct Proto { | |||
214 | struct Proto **p; /* functions defined inside the function */ | 214 | struct Proto **p; /* functions defined inside the function */ |
215 | int *lineinfo; /* map from opcodes to source lines */ | 215 | int *lineinfo; /* map from opcodes to source lines */ |
216 | struct LocVar *locvars; /* information about local variables */ | 216 | struct LocVar *locvars; /* information about local variables */ |
217 | TString **upvalues; /* upvalue names */ | ||
217 | TString *source; | 218 | TString *source; |
219 | int nupvalues; /* (also size of `upvals') */ | ||
218 | int sizek; /* size of `k' */ | 220 | int sizek; /* size of `k' */ |
219 | int sizecode; | 221 | int sizecode; |
220 | int sizelineinfo; | 222 | int sizelineinfo; |
@@ -222,7 +224,6 @@ typedef struct Proto { | |||
222 | int sizelocvars; | 224 | int sizelocvars; |
223 | int lineDefined; | 225 | int lineDefined; |
224 | GCObject *gclist; | 226 | GCObject *gclist; |
225 | lu_byte nupvalues; | ||
226 | lu_byte numparams; | 227 | lu_byte numparams; |
227 | lu_byte is_vararg; | 228 | lu_byte is_vararg; |
228 | lu_byte maxstacksize; | 229 | lu_byte maxstacksize; |