lua/llex.h

73 lines
1.8 KiB
C
Raw Normal View History

1997-09-17 03:25:59 +08:00
/*
2001-01-11 00:40:56 +08:00
** $Id: llex.h,v 1.32 2000/12/04 18:33:40 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
2001-01-11 00:40:56 +08:00
/* maximum length of a reserved word */
#define TOKEN_LEN (sizeof("function"))
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,
2000-04-13 02:57:19 +08:00
TK_DO, TK_ELSE, TK_ELSEIF, TK_END, TK_FOR, TK_FUNCTION, TK_IF, TK_LOCAL,
2000-03-11 02:37:44 +08:00
TK_NIL, TK_NOT, TK_OR, TK_REPEAT, TK_RETURN, TK_THEN, TK_UNTIL, TK_WHILE,
1998-05-27 21:08:34 +08:00
/* other terminal symbols */
2000-04-07 21:11:49 +08:00
TK_NAME, TK_CONCAT, TK_DOTS, TK_EQ, TK_GE, TK_LE, TK_NE, TK_NUMBER,
2000-03-11 02:37:44 +08:00
TK_STRING, TK_EOS
2000-02-09 00:39:42 +08:00
};
2000-03-03 22:58:26 +08:00
/* number of reserved words */
2000-03-11 02:37:44 +08:00
#define NUM_RESERVED ((int)(TK_WHILE-FIRST_RESERVED+1))
1998-05-27 21:08:34 +08:00
typedef union {
lua_Number r;
TString *ts;
} SemInfo; /* semantics information */
typedef struct Token {
int token;
SemInfo seminfo;
} Token;
typedef struct LexState {
2000-05-26 02:59:59 +08:00
int current; /* current character */
Token t; /* current token */
Token lookahead; /* look ahead token */
struct FuncState *fs; /* `FuncState' is private to the parser */
struct lua_State *L;
2000-03-03 22:58:26 +08:00
struct zio *z; /* input stream */
1997-12-02 20:43:44 +08:00
int linenumber; /* input line counter */
2000-06-22 02:13:56 +08:00
int lastline; /* line of last token `consumed' */
2000-06-20 02:05:14 +08:00
TString *source; /* current source name */
} LexState;
void luaX_init (lua_State *L);
2000-06-20 02:05:14 +08:00
void luaX_setinput (lua_State *L, LexState *LS, ZIO *z, TString *source);
int luaX_lex (LexState *LS, SemInfo *seminfo);
2000-05-24 21:54:49 +08:00
void luaX_checklimit (LexState *ls, int val, int limit, const char *msg);
1999-08-17 04:52:00 +08:00
void luaX_syntaxerror (LexState *ls, const char *s, const char *token);
2000-01-26 02:44:21 +08:00
void luaX_error (LexState *ls, const char *s, int token);
void luaX_token2str (int token, char *s);
1997-09-17 03:25:59 +08:00
#endif