diff options
Diffstat (limited to 'src/lj_lex.h')
-rw-r--r-- | src/lj_lex.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/lj_lex.h b/src/lj_lex.h index 0718f5a6..78a7e1a9 100644 --- a/src/lj_lex.h +++ b/src/lj_lex.h | |||
@@ -38,6 +38,13 @@ typedef struct BCInsLine { | |||
38 | BCLine line; /* Line number for this bytecode. */ | 38 | BCLine line; /* Line number for this bytecode. */ |
39 | } BCInsLine; | 39 | } BCInsLine; |
40 | 40 | ||
41 | /* Info for local variables. Only used during bytecode generation. */ | ||
42 | typedef struct VarInfo { | ||
43 | GCRef name; /* Local variable name. */ | ||
44 | BCPos startpc; /* First point where the local variable is active. */ | ||
45 | BCPos endpc; /* First point where the local variable is dead. */ | ||
46 | } VarInfo; | ||
47 | |||
41 | /* Lua lexer state. */ | 48 | /* Lua lexer state. */ |
42 | typedef struct LexState { | 49 | typedef struct LexState { |
43 | struct FuncState *fs; /* Current FuncState. Defined in lj_parse.c. */ | 50 | struct FuncState *fs; /* Current FuncState. Defined in lj_parse.c. */ |