diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2001-02-20 15:28:11 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2001-02-20 15:28:11 -0300 |
commit | 888f91fa24d7561471acb87ddafc156408dd3617 (patch) | |
tree | 81d17820c81cf8c98bcff12b0ec7373b12e18bd8 /lparser.h | |
parent | c1db0b2bf1ba9c5e60d77fd70f8de06aab2e0e93 (diff) | |
download | lua-888f91fa24d7561471acb87ddafc156408dd3617.tar.gz lua-888f91fa24d7561471acb87ddafc156408dd3617.tar.bz2 lua-888f91fa24d7561471acb87ddafc156408dd3617.zip |
code check for upvalues
Diffstat (limited to 'lparser.h')
-rw-r--r-- | lparser.h | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lparser.h,v 1.28 2000/12/26 18:46:09 roberto Exp roberto $ | 2 | ** $Id: lparser.h,v 1.29 2000/12/28 12:55:41 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 | */ |
@@ -51,7 +51,6 @@ typedef struct FuncState { | |||
51 | int nlineinfo; /* number of elements in `lineinfo' */ | 51 | int nlineinfo; /* number of elements in `lineinfo' */ |
52 | int nlocvars; /* number of elements in `locvars' */ | 52 | int nlocvars; /* number of elements in `locvars' */ |
53 | int nactloc; /* number of active local variables */ | 53 | int nactloc; /* number of active local variables */ |
54 | int nupvalues; /* number of upvalues */ | ||
55 | int lastline; /* line where last `lineinfo' was generated */ | 54 | int lastline; /* line where last `lineinfo' was generated */ |
56 | struct Breaklabel *bl; /* chain of breakable blocks */ | 55 | struct Breaklabel *bl; /* chain of breakable blocks */ |
57 | expdesc upvalues[MAXUPVALUES]; /* upvalues */ | 56 | expdesc upvalues[MAXUPVALUES]; /* upvalues */ |