diff options
Diffstat (limited to 'lobject.h')
| -rw-r--r-- | lobject.h | 8 |
1 files changed, 4 insertions, 4 deletions
| @@ -1,5 +1,5 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** $Id: lobject.h,v 1.67 2000/06/08 18:27:13 roberto Exp roberto $ | 2 | ** $Id: lobject.h,v 1.68 2000/06/26 19:28:31 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 | */ |
| @@ -122,7 +122,6 @@ typedef struct Proto { | |||
| 122 | int *lines; /* source line that generated each opcode */ | 122 | int *lines; /* source line that generated each opcode */ |
| 123 | int lineDefined; | 123 | int lineDefined; |
| 124 | TString *source; | 124 | TString *source; |
| 125 | int debug; /* flag for debug information */ | ||
| 126 | int numparams; | 125 | int numparams; |
| 127 | int is_vararg; | 126 | int is_vararg; |
| 128 | int maxstacksize; | 127 | int maxstacksize; |
| @@ -171,9 +170,10 @@ typedef struct Hash { | |||
| 171 | ** informations about a call (for debugging) | 170 | ** informations about a call (for debugging) |
| 172 | */ | 171 | */ |
| 173 | typedef struct CallInfo { | 172 | typedef struct CallInfo { |
| 174 | int pc; /* current pc of called function */ | ||
| 175 | int line; /* current line */ | ||
| 176 | struct Closure *func; /* function being called */ | 173 | struct Closure *func; /* function being called */ |
| 174 | const Instruction **pc; /* current pc of called function */ | ||
| 175 | int lastpc; /* last pc traced */ | ||
| 176 | int line; /* current line */ | ||
| 177 | } CallInfo; | 177 | } CallInfo; |
| 178 | 178 | ||
| 179 | 179 | ||
