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