1997-09-17 03:25:59 +08:00
|
|
|
/*
|
2013-04-17 02:46:28 +08:00
|
|
|
** $Id: llex.h,v 1.72 2011/11/30 12:43:51 roberto Exp roberto $
|
1999-02-26 05:07:26 +08:00
|
|
|
** Lexical Analyzer
|
1997-09-17 03:25:59 +08:00
|
|
|
** See Copyright Notice in lua.h
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef llex_h
|
|
|
|
#define llex_h
|
|
|
|
|
|
|
|
#include "lobject.h"
|
|
|
|
#include "lzio.h"
|
|
|
|
|
|
|
|
|
2000-03-03 22:58:26 +08:00
|
|
|
#define FIRST_RESERVED 257
|
1998-05-27 21:08:34 +08:00
|
|
|
|
|
|
|
|
1999-07-23 03:29:42 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* WARNING: if you change the order of this enumeration,
|
|
|
|
* grep "ORDER RESERVED"
|
|
|
|
*/
|
1998-05-27 21:08:34 +08:00
|
|
|
enum RESERVED {
|
|
|
|
/* terminal symbols denoted by reserved words */
|
2000-04-06 01:51:58 +08:00
|
|
|
TK_AND = FIRST_RESERVED, TK_BREAK,
|
2001-12-12 06:48:44 +08:00
|
|
|
TK_DO, TK_ELSE, TK_ELSEIF, TK_END, TK_FALSE, TK_FOR, TK_FUNCTION,
|
2011-02-02 22:55:17 +08:00
|
|
|
TK_GOTO, TK_IF, TK_IN, TK_LOCAL, TK_NIL, TK_NOT, TK_OR, TK_REPEAT,
|
2001-12-12 06:48:44 +08:00
|
|
|
TK_RETURN, TK_THEN, TK_TRUE, TK_UNTIL, TK_WHILE,
|
1998-05-27 21:08:34 +08:00
|
|
|
/* other terminal symbols */
|
2011-06-21 00:52:48 +08:00
|
|
|
TK_CONCAT, TK_DOTS, TK_EQ, TK_GE, TK_LE, TK_NE, TK_DBCOLON, TK_EOS,
|
2013-04-17 02:46:28 +08:00
|
|
|
TK_FLT, TK_INT, TK_NAME, TK_STRING
|
2000-02-09 00:39:42 +08:00
|
|
|
};
|
|
|
|
|
2000-03-03 22:58:26 +08:00
|
|
|
/* number of reserved words */
|
2001-09-01 03:46:07 +08:00
|
|
|
#define NUM_RESERVED (cast(int, TK_WHILE-FIRST_RESERVED+1))
|
1998-05-27 21:08:34 +08:00
|
|
|
|
|
|
|
|
2000-09-28 01:41:58 +08:00
|
|
|
typedef union {
|
2000-12-05 02:33:40 +08:00
|
|
|
lua_Number r;
|
2013-04-17 02:46:28 +08:00
|
|
|
lua_Integer i;
|
2000-09-28 01:41:58 +08:00
|
|
|
TString *ts;
|
|
|
|
} SemInfo; /* semantics information */
|
|
|
|
|
|
|
|
|
2000-05-25 02:04:17 +08:00
|
|
|
typedef struct Token {
|
|
|
|
int token;
|
2000-09-28 01:41:58 +08:00
|
|
|
SemInfo seminfo;
|
2000-05-25 02:04:17 +08:00
|
|
|
} Token;
|
|
|
|
|
2000-09-28 01:41:58 +08:00
|
|
|
|
2011-02-08 01:14:50 +08:00
|
|
|
/* state of the lexer plus state of the parser when shared by all
|
|
|
|
functions */
|
2000-05-25 02:04:17 +08:00
|
|
|
typedef struct LexState {
|
2001-11-29 04:13:13 +08:00
|
|
|
int current; /* current character (charint) */
|
2002-02-09 06:42:41 +08:00
|
|
|
int linenumber; /* input line counter */
|
|
|
|
int lastline; /* line of last token `consumed' */
|
2000-05-26 02:59:59 +08:00
|
|
|
Token t; /* current token */
|
|
|
|
Token lookahead; /* look ahead token */
|
2011-02-08 01:14:50 +08:00
|
|
|
struct FuncState *fs; /* current function (parser) */
|
2000-05-25 02:04:17 +08:00
|
|
|
struct lua_State *L;
|
2002-10-09 02:46:08 +08:00
|
|
|
ZIO *z; /* input stream */
|
|
|
|
Mbuffer *buff; /* buffer for tokens */
|
2011-02-08 01:14:50 +08:00
|
|
|
struct Dyndata *dyd; /* dynamic structures used by the parser */
|
2000-06-20 02:05:14 +08:00
|
|
|
TString *source; /* current source name */
|
2010-04-06 00:35:37 +08:00
|
|
|
TString *envn; /* environment variable name */
|
2005-12-07 23:33:27 +08:00
|
|
|
char decpoint; /* locale decimal point */
|
1997-11-20 01:29:23 +08:00
|
|
|
} LexState;
|
|
|
|
|
|
|
|
|
2005-04-26 03:24:10 +08:00
|
|
|
LUAI_FUNC void luaX_init (lua_State *L);
|
2006-03-24 02:23:32 +08:00
|
|
|
LUAI_FUNC void luaX_setinput (lua_State *L, LexState *ls, ZIO *z,
|
2011-02-23 21:13:10 +08:00
|
|
|
TString *source, int firstchar);
|
2006-03-24 02:23:32 +08:00
|
|
|
LUAI_FUNC TString *luaX_newstring (LexState *ls, const char *str, size_t l);
|
2005-12-07 23:43:05 +08:00
|
|
|
LUAI_FUNC void luaX_next (LexState *ls);
|
2007-05-12 01:28:56 +08:00
|
|
|
LUAI_FUNC int luaX_lookahead (LexState *ls);
|
2011-11-30 20:43:51 +08:00
|
|
|
LUAI_FUNC l_noret luaX_syntaxerror (LexState *ls, const char *s);
|
2005-04-26 03:24:10 +08:00
|
|
|
LUAI_FUNC const char *luaX_token2str (LexState *ls, int token);
|
1997-09-17 03:25:59 +08:00
|
|
|
|
|
|
|
|
|
|
|
#endif
|