diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2000-10-09 11:47:46 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2000-10-09 11:47:46 -0200 |
commit | 79909a92e194ccf4bf34e045993b88c89154f3ad (patch) | |
tree | 0e6ac4e7e790ad710a218288d8d574b7109f2e56 /lparser.h | |
parent | d6232a0b2e53d6bd374c762a4f47e7a8799de5d2 (diff) | |
download | lua-79909a92e194ccf4bf34e045993b88c89154f3ad.tar.gz lua-79909a92e194ccf4bf34e045993b88c89154f3ad.tar.bz2 lua-79909a92e194ccf4bf34e045993b88c89154f3ad.zip |
details
Diffstat (limited to 'lparser.h')
-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 */ |