renaming of some opcodes and fields

This commit is contained in:
Roberto Ierusalimschy
2000-01-28 14:53:00 -02:00
parent d6b9f49aaf
commit 1f691a4fcd
7 changed files with 79 additions and 79 deletions

View File

@@ -1,5 +1,5 @@
/*
** $Id: lobject.h,v 1.43 1999/12/29 16:31:15 roberto Exp roberto $
** $Id: lobject.h,v 1.44 2000/01/25 13:57:18 roberto Exp roberto $
** Type definitions for Lua objects
** See Copyright Notice in lua.h
*/
@@ -154,12 +154,12 @@ typedef struct TaggedString {
typedef struct TProtoFunc {
struct TProtoFunc *next;
int marked;
struct TaggedString **strcnst;
int nstrcnst;
real *numcnst;
int nnumcnst;
struct TProtoFunc **protocnst;
int nprotocnst;
struct TaggedString **kstr; /* strings used by the function */
int nkstr; /* size of `kstr' */
real *knum; /* real numbers used by the function */
int nknum; /* size of `knum' */
struct TProtoFunc **kproto; /* functions defined inside the function */
int nkproto; /* size of `kproto' */
Byte *code; /* ends with opcode ENDCODE */
int lineDefined;
TaggedString *source;