mirror of
https://github.com/lua/lua
synced 2026-09-27 00:28:25 +03:00
first implementation of 'goto'
This commit is contained in:
parent
a4a8914c20
commit
7cc0e63d8a
4 changed files with 227 additions and 23 deletions
4
llex.h
4
llex.h
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
** $Id: llex.h,v 1.65 2010/04/05 16:35:37 roberto Exp roberto $
|
||||
** $Id: llex.h,v 1.66 2011/02/02 14:55:17 roberto Exp roberto $
|
||||
** Lexical Analyzer
|
||||
** See Copyright Notice in lua.h
|
||||
*/
|
||||
|
|
@ -59,6 +59,8 @@ typedef struct LexState {
|
|||
ZIO *z; /* input stream */
|
||||
Mbuffer *buff; /* buffer for tokens */
|
||||
struct Varlist *varl; /* list of all active local variables */
|
||||
struct Gotolist *gtl; /* list of pending gotos */
|
||||
struct Labellist *labell; /* list of active labels */
|
||||
TString *source; /* current source name */
|
||||
TString *envn; /* environment variable name */
|
||||
char decpoint; /* locale decimal point */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue