mirror of https://github.com/rusefi/lua.git
details
This commit is contained in:
parent
d6232a0b2e
commit
79909a92e1
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
** $Id: lparser.h,v 1.24 2000/08/30 18:50:18 roberto Exp roberto $
|
** $Id: lparser.h,v 1.25 2000/09/29 12:42:13 roberto Exp roberto $
|
||||||
** LL(1) Parser and code generator for Lua
|
** LL(1) Parser and code generator for Lua
|
||||||
** See Copyright Notice in lua.h
|
** See Copyright Notice in lua.h
|
||||||
*/
|
*/
|
||||||
|
@ -44,9 +44,9 @@ typedef struct FuncState {
|
||||||
int pc; /* next position to code */
|
int pc; /* next position to code */
|
||||||
int lasttarget; /* `pc' of last `jump target' */
|
int lasttarget; /* `pc' of last `jump target' */
|
||||||
int jlt; /* list of jumps to `lasttarget' */
|
int jlt; /* list of jumps to `lasttarget' */
|
||||||
int stacklevel; /* number of values on activation register */
|
short stacklevel; /* number of values on activation register */
|
||||||
int nactloc; /* number of active local variables */
|
short nactloc; /* number of active local variables */
|
||||||
int nupvalues; /* number of upvalues */
|
short nupvalues; /* number of upvalues */
|
||||||
int lastline; /* line where last `lineinfo' was generated */
|
int lastline; /* line where last `lineinfo' was generated */
|
||||||
struct Breaklabel *bl; /* chain of breakable blocks */
|
struct Breaklabel *bl; /* chain of breakable blocks */
|
||||||
expdesc upvalues[MAXUPVALUES]; /* upvalues */
|
expdesc upvalues[MAXUPVALUES]; /* upvalues */
|
||||||
|
|
Loading…
Reference in New Issue