diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2000-01-28 14:53:00 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2000-01-28 14:53:00 -0200 |
commit | 1f691a4fcd32b706c79e4c8cbff17c6ae985bc34 (patch) | |
tree | cbc0e4fafd5fc1367db57f2b2fc8dff5876f1076 /lobject.h | |
parent | d6b9f49aaf735f7b17bd0dcafde65ba0f8c57bc7 (diff) | |
download | lua-1f691a4fcd32b706c79e4c8cbff17c6ae985bc34.tar.gz lua-1f691a4fcd32b706c79e4c8cbff17c6ae985bc34.tar.bz2 lua-1f691a4fcd32b706c79e4c8cbff17c6ae985bc34.zip |
renaming of some opcodes and fields
Diffstat (limited to 'lobject.h')
-rw-r--r-- | lobject.h | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lobject.h,v 1.43 1999/12/29 16:31:15 roberto Exp roberto $ | 2 | ** $Id: lobject.h,v 1.44 2000/01/25 13:57:18 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 | */ |
@@ -154,12 +154,12 @@ typedef struct TaggedString { | |||
154 | typedef struct TProtoFunc { | 154 | typedef struct TProtoFunc { |
155 | struct TProtoFunc *next; | 155 | struct TProtoFunc *next; |
156 | int marked; | 156 | int marked; |
157 | struct TaggedString **strcnst; | 157 | struct TaggedString **kstr; /* strings used by the function */ |
158 | int nstrcnst; | 158 | int nkstr; /* size of `kstr' */ |
159 | real *numcnst; | 159 | real *knum; /* real numbers used by the function */ |
160 | int nnumcnst; | 160 | int nknum; /* size of `knum' */ |
161 | struct TProtoFunc **protocnst; | 161 | struct TProtoFunc **kproto; /* functions defined inside the function */ |
162 | int nprotocnst; | 162 | int nkproto; /* size of `kproto' */ |
163 | Byte *code; /* ends with opcode ENDCODE */ | 163 | Byte *code; /* ends with opcode ENDCODE */ |
164 | int lineDefined; | 164 | int lineDefined; |
165 | TaggedString *source; | 165 | TaggedString *source; |