From dd8edecae19251a3b89502416a2e7f8e75b2bd20 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Thu, 19 Dec 2002 09:11:55 -0200 Subject: new functions to manipulate upvales (get/setupvalue) --- lobject.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'lobject.h') diff --git a/lobject.h b/lobject.h index 4fb42461..6b00b4b6 100644 --- a/lobject.h +++ b/lobject.h @@ -1,5 +1,5 @@ /* -** $Id: lobject.h,v 1.154 2002/11/14 11:51:50 roberto Exp roberto $ +** $Id: lobject.h,v 1.155 2002/11/14 16:16:21 roberto Exp roberto $ ** Type definitions for Lua objects ** See Copyright Notice in lua.h */ @@ -214,7 +214,9 @@ typedef struct Proto { struct Proto **p; /* functions defined inside the function */ int *lineinfo; /* map from opcodes to source lines */ struct LocVar *locvars; /* information about local variables */ + TString **upvalues; /* upvalue names */ TString *source; + int nupvalues; /* (also size of `upvals') */ int sizek; /* size of `k' */ int sizecode; int sizelineinfo; @@ -222,7 +224,6 @@ typedef struct Proto { int sizelocvars; int lineDefined; GCObject *gclist; - lu_byte nupvalues; lu_byte numparams; lu_byte is_vararg; lu_byte maxstacksize; -- cgit v1.2.3-55-g6feb