1997-09-16 23:25:59 +04:00
|
|
|
/*
|
2000-05-26 18:04:04 +04:00
|
|
|
** $Id: llex.h,v 1.27 2000/05/25 18:59:59 roberto Exp roberto $
|
1999-02-26 00:07:26 +03:00
|
|
|
** Lexical Analyzer
|
1997-09-16 23:25:59 +04:00
|
|
|
** See Copyright Notice in lua.h
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef llex_h
|
|
|
|
#define llex_h
|
|
|
|
|
|
|
|
#include "lobject.h"
|
|
|
|
#include "lzio.h"
|
|
|
|
|
|
|
|
|
2000-03-03 17:58:26 +03:00
|
|
|
#define FIRST_RESERVED 257
|
1998-05-27 17:08:34 +04:00
|
|
|
|
1999-12-27 20:33:22 +03:00
|
|
|
/* maximum length of a reserved word (+1 for final 0) */
|
1998-05-27 17:08:34 +04:00
|
|
|
#define TOKEN_LEN 15
|
|
|
|
|
1999-07-22 23:29:42 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* WARNING: if you change the order of this enumeration,
|
|
|
|
* grep "ORDER RESERVED"
|
|
|
|
*/
|
1998-05-27 17:08:34 +04:00
|
|
|
enum RESERVED {
|
|
|
|
/* terminal symbols denoted by reserved words */
|
2000-04-05 21:51:58 +04:00
|
|
|
TK_AND = FIRST_RESERVED, TK_BREAK,
|
2000-04-12 22:57:19 +04:00
|
|
|
TK_DO, TK_ELSE, TK_ELSEIF, TK_END, TK_FOR, TK_FUNCTION, TK_IF, TK_LOCAL,
|
2000-03-10 21:37:44 +03:00
|
|
|
TK_NIL, TK_NOT, TK_OR, TK_REPEAT, TK_RETURN, TK_THEN, TK_UNTIL, TK_WHILE,
|
1998-05-27 17:08:34 +04:00
|
|
|
/* other terminal symbols */
|
2000-04-07 17:11:49 +04:00
|
|
|
TK_NAME, TK_CONCAT, TK_DOTS, TK_EQ, TK_GE, TK_LE, TK_NE, TK_NUMBER,
|
2000-03-10 21:37:44 +03:00
|
|
|
TK_STRING, TK_EOS
|
2000-02-08 19:39:42 +03:00
|
|
|
};
|
|
|
|
|
2000-03-03 17:58:26 +03:00
|
|
|
/* number of reserved words */
|
2000-03-10 21:37:44 +03:00
|
|
|
#define NUM_RESERVED ((int)(TK_WHILE-FIRST_RESERVED+1))
|
1998-05-27 17:08:34 +04:00
|
|
|
|
|
|
|
|
2000-05-24 22:04:17 +04:00
|
|
|
typedef struct Token {
|
|
|
|
int token;
|
1998-05-27 17:08:34 +04:00
|
|
|
union {
|
2000-03-10 21:37:44 +03:00
|
|
|
Number r;
|
|
|
|
TString *ts;
|
1998-05-27 17:08:34 +04:00
|
|
|
} seminfo; /* semantics information */
|
2000-05-24 22:04:17 +04:00
|
|
|
} Token;
|
|
|
|
|
|
|
|
typedef struct LexState {
|
2000-05-25 22:59:59 +04:00
|
|
|
int current; /* current character */
|
|
|
|
Token t; /* current token */
|
|
|
|
Token lookahead; /* look ahead token */
|
2000-05-24 22:04:17 +04:00
|
|
|
struct FuncState *fs; /* `FuncState' is private to the parser */
|
|
|
|
struct lua_State *L;
|
2000-03-03 17:58:26 +03:00
|
|
|
struct zio *z; /* input stream */
|
1997-12-02 15:43:44 +03:00
|
|
|
int linenumber; /* input line counter */
|
1997-11-19 20:29:23 +03:00
|
|
|
} LexState;
|
|
|
|
|
|
|
|
|
1999-11-22 16:12:07 +03:00
|
|
|
void luaX_init (lua_State *L);
|
|
|
|
void luaX_setinput (lua_State *L, LexState *LS, ZIO *z);
|
1998-05-27 17:08:34 +04:00
|
|
|
int luaX_lex (LexState *LS);
|
2000-05-24 17:54:49 +04:00
|
|
|
void luaX_checklimit (LexState *ls, int val, int limit, const char *msg);
|
1999-08-17 00:52:00 +04:00
|
|
|
void luaX_syntaxerror (LexState *ls, const char *s, const char *token);
|
2000-01-25 21:44:21 +03:00
|
|
|
void luaX_error (LexState *ls, const char *s, int token);
|
1998-07-24 22:02:38 +04:00
|
|
|
void luaX_token2str (int token, char *s);
|
1997-09-16 23:25:59 +04:00
|
|
|
|
|
|
|
|
|
|
|
#endif
|