From bd39db46ed33c09427547c4390aaf2519169de6f Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Mon, 21 Aug 2000 11:34:43 -0300 Subject: details --- lobject.h | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/lobject.h b/lobject.h index 76cf8663..beb5745d 100644 --- a/lobject.h +++ b/lobject.h @@ -1,5 +1,5 @@ /* -** $Id: lobject.h,v 1.71 2000/08/07 20:21:34 roberto Exp roberto $ +** $Id: lobject.h,v 1.72 2000/08/08 18:26:05 roberto Exp roberto $ ** Type definitions for Lua objects ** See Copyright Notice in lua.h */ @@ -117,14 +117,15 @@ typedef struct Proto { struct Proto **kproto; /* functions defined inside the function */ int nkproto; /* size of `kproto' */ Instruction *code; /* ends with opcode ENDCODE */ + int numparams; + int is_vararg; + int maxstacksize; struct Proto *next; int marked; + /* debug information */ int *lineinfo; /* map from opcodes to source lines */ int lineDefined; TString *source; - int numparams; - int is_vararg; - int maxstacksize; struct LocVar *locvars; /* ends with line = -1 */ } Proto; -- cgit v1.2.3-55-g6feb