diff options
Diffstat (limited to '')
| -rw-r--r-- | lparser.h | 8 |
1 files changed, 4 insertions, 4 deletions
| @@ -1,5 +1,5 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** $Id: lparser.h,v 1.24 2000/08/30 18:50:18 roberto Exp roberto $ | 2 | ** $Id: lparser.h,v 1.25 2000/09/29 12:42:13 roberto Exp roberto $ |
| 3 | ** LL(1) Parser and code generator for Lua | 3 | ** LL(1) Parser and code generator for Lua |
| 4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
| 5 | */ | 5 | */ |
| @@ -44,9 +44,9 @@ typedef struct FuncState { | |||
| 44 | int pc; /* next position to code */ | 44 | int pc; /* next position to code */ |
| 45 | int lasttarget; /* `pc' of last `jump target' */ | 45 | int lasttarget; /* `pc' of last `jump target' */ |
| 46 | int jlt; /* list of jumps to `lasttarget' */ | 46 | int jlt; /* list of jumps to `lasttarget' */ |
| 47 | int stacklevel; /* number of values on activation register */ | 47 | short stacklevel; /* number of values on activation register */ |
| 48 | int nactloc; /* number of active local variables */ | 48 | short nactloc; /* number of active local variables */ |
| 49 | int nupvalues; /* number of upvalues */ | 49 | short nupvalues; /* number of upvalues */ |
| 50 | int lastline; /* line where last `lineinfo' was generated */ | 50 | int lastline; /* line where last `lineinfo' was generated */ |
| 51 | struct Breaklabel *bl; /* chain of breakable blocks */ | 51 | struct Breaklabel *bl; /* chain of breakable blocks */ |
| 52 | expdesc upvalues[MAXUPVALUES]; /* upvalues */ | 52 | expdesc upvalues[MAXUPVALUES]; /* upvalues */ |
