diff options
Diffstat (limited to 'lparser.h')
-rw-r--r-- | lparser.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lparser.h,v 1.16 2000/04/06 17:36:52 roberto Exp roberto $ | 2 | ** $Id: lparser.h,v 1.17 2000/05/25 18:26:42 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 | */ |
@@ -49,6 +49,7 @@ typedef struct FuncState { | |||
49 | int nupvalues; /* number of upvalues */ | 49 | int nupvalues; /* number of upvalues */ |
50 | int nvars; /* number of entries in f->locvars */ | 50 | int nvars; /* number of entries in f->locvars */ |
51 | int lastsetline; /* line where last SETLINE was issued */ | 51 | int lastsetline; /* line where last SETLINE was issued */ |
52 | int debug; /* flag to generate debug information */ | ||
52 | struct Breaklabel *bl; /* chain of breakable blocks */ | 53 | struct Breaklabel *bl; /* chain of breakable blocks */ |
53 | expdesc upvalues[MAXUPVALUES]; /* upvalues */ | 54 | expdesc upvalues[MAXUPVALUES]; /* upvalues */ |
54 | TString *localvar[MAXLOCALS]; /* store local variable names */ | 55 | TString *localvar[MAXLOCALS]; /* store local variable names */ |