1997-09-16 16:25:59 -03:00
|
|
|
/*
|
2005-06-06 10:30:25 -03:00
|
|
|
** $Id: llex.h,v 1.54 2005/04/25 19:24:10 roberto Exp roberto $
|
1999-02-25 18:07:26 -03:00
|
|
|
** Lexical Analyzer
|
1997-09-16 16:25:59 -03:00
|
|
|
** See Copyright Notice in lua.h
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef llex_h
|
|
|
|
#define llex_h
|
|
|
|
|
|
|
|
#include "lobject.h"
|
|
|
|
#include "lzio.h"
|
|
|
|
|
|
|
|
|
2000-03-03 11:58:26 -03:00
|
|
|
#define FIRST_RESERVED 257
|
1998-05-27 10:08:34 -03:00
|
|
|
|
2001-01-10 14:40:56 -02:00
|
|
|
/* maximum length of a reserved word */
|
2001-11-28 18:13:13 -02:00
|
|
|
#define TOKEN_LEN (sizeof("function")/sizeof(char))
|
1998-05-27 10:08:34 -03:00
|
|
|
|
1999-07-22 16:29:42 -03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* WARNING: if you change the order of this enumeration,
|
|
|
|
* grep "ORDER RESERVED"
|
|
|
|
*/
|
1998-05-27 10:08:34 -03:00
|
|
|
enum RESERVED {
|
|
|
|
/* terminal symbols denoted by reserved words */
|
2000-04-05 14:51:58 -03:00
|
|
|
TK_AND = FIRST_RESERVED, TK_BREAK,
|
2001-12-11 20:48:44 -02:00
|
|
|
TK_DO, TK_ELSE, TK_ELSEIF, TK_END, TK_FALSE, TK_FOR, TK_FUNCTION,
|
2002-09-03 08:57:38 -03:00
|
|
|
TK_IF, TK_IN, TK_LOCAL, TK_NIL, TK_NOT, TK_OR, TK_REPEAT,
|
2001-12-11 20:48:44 -02:00
|
|
|
TK_RETURN, TK_THEN, TK_TRUE, TK_UNTIL, TK_WHILE,
|
1998-05-27 10:08:34 -03:00
|
|
|
/* other terminal symbols */
|
2004-12-03 18:54:12 -02:00
|
|
|
TK_CONCAT, TK_DOTS, TK_EQ, TK_GE, TK_LE, TK_NE, TK_NUMBER,
|
|
|
|
TK_NAME, TK_STRING, TK_EOS
|
2000-02-08 14:39:42 -02:00
|
|
|
};
|
|
|
|
|
2000-03-03 11:58:26 -03:00
|
|
|
/* number of reserved words */
|
2001-08-31 16:46:07 -03:00
|
|
|
#define NUM_RESERVED (cast(int, TK_WHILE-FIRST_RESERVED+1))
|
1998-05-27 10:08:34 -03:00
|
|
|
|
|
|
|
|
2004-12-02 10:59:10 -02:00
|
|
|
/* array with token `names' */
|
2005-06-06 10:30:25 -03:00
|
|
|
LUAI_DATA const char *const luaX_tokens [];
|
2004-12-02 10:59:10 -02:00
|
|
|
|
|
|
|
|
2000-09-27 14:41:58 -03:00
|
|
|
typedef union {
|
2000-12-04 16:33:40 -02:00
|
|
|
lua_Number r;
|
2000-09-27 14:41:58 -03:00
|
|
|
TString *ts;
|
|
|
|
} SemInfo; /* semantics information */
|
|
|
|
|
|
|
|
|
2000-05-24 15:04:17 -03:00
|
|
|
typedef struct Token {
|
|
|
|
int token;
|
2000-09-27 14:41:58 -03:00
|
|
|
SemInfo seminfo;
|
2000-05-24 15:04:17 -03:00
|
|
|
} Token;
|
|
|
|
|
2000-09-27 14:41:58 -03:00
|
|
|
|
2000-05-24 15:04:17 -03:00
|
|
|
typedef struct LexState {
|
2001-11-28 18:13:13 -02:00
|
|
|
int current; /* current character (charint) */
|
2002-02-08 20:42:41 -02:00
|
|
|
int linenumber; /* input line counter */
|
|
|
|
int lastline; /* line of last token `consumed' */
|
2000-05-25 15:59:59 -03:00
|
|
|
Token t; /* current token */
|
|
|
|
Token lookahead; /* look ahead token */
|
2000-05-24 15:04:17 -03:00
|
|
|
struct FuncState *fs; /* `FuncState' is private to the parser */
|
|
|
|
struct lua_State *L;
|
2002-10-08 15:46:08 -03:00
|
|
|
ZIO *z; /* input stream */
|
|
|
|
Mbuffer *buff; /* buffer for tokens */
|
2000-06-19 15:05:14 -03:00
|
|
|
TString *source; /* current source name */
|
1997-11-19 15:29:23 -02:00
|
|
|
} LexState;
|
|
|
|
|
|
|
|
|
2005-04-25 16:24:10 -03:00
|
|
|
LUAI_FUNC void luaX_init (lua_State *L);
|
|
|
|
LUAI_FUNC void luaX_setinput (lua_State *L, LexState *LS, ZIO *z,
|
|
|
|
TString *source);
|
|
|
|
LUAI_FUNC TString *luaX_newstring (LexState *LS, const char *str, size_t l);
|
|
|
|
LUAI_FUNC int luaX_lex (LexState *LS, SemInfo *seminfo);
|
|
|
|
LUAI_FUNC void luaX_lexerror (LexState *ls, const char *msg, int token);
|
|
|
|
LUAI_FUNC void luaX_syntaxerror (LexState *ls, const char *s);
|
|
|
|
LUAI_FUNC const char *luaX_token2str (LexState *ls, int token);
|
1997-09-16 16:25:59 -03:00
|
|
|
|
|
|
|
|
|
|
|
#endif
|