lua/llex.h

71 lines
1.7 KiB
C
Raw Normal View History

1997-09-17 03:25:59 +08:00
/*
2000-01-26 02:44:21 +08:00
** $Id: llex.h,v 1.16 1999/12/27 17:33:22 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"
1998-05-27 21:08:34 +08:00
#define FIRST_RESERVED 260
1999-12-28 01:33:22 +08:00
/* maximum length of a reserved word (+1 for final 0) */
1998-05-27 21:08:34 +08:00
#define TOKEN_LEN 15
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 */
AND = FIRST_RESERVED,
DO, ELSE, ELSEIF, END, FUNCTION, IF, LOCAL, NIL, NOT, OR,
REPEAT, RETURN, THEN, UNTIL, WHILE,
/* other terminal symbols */
NAME, CONC, DOTS, EQ, GE, LE, NE, NUMBER, STRING, EOS};
1999-06-18 01:04:03 +08:00
#ifndef MAX_IFS
#define MAX_IFS 5 /* arbitrary limit */
#endif
1999-12-28 01:33:22 +08:00
/* `ifState' keeps the state of each nested $if the lexical is dealing with. */
struct ifState {
1999-02-26 05:07:26 +08:00
int elsepart; /* true if it's in the $else part */
int condition; /* true if $if condition is true */
1998-06-20 00:14:09 +08:00
int skip; /* true if part must be skipped */
};
typedef struct LexState {
int current; /* look ahead character */
1998-05-27 21:08:34 +08:00
int token; /* look ahead token */
1999-12-28 01:33:22 +08:00
struct FuncState *fs; /* `FuncState' is private for the parser */
struct lua_State *L;
1998-05-27 21:08:34 +08:00
union {
real r;
TaggedString *ts;
} seminfo; /* semantics information */
1997-12-02 20:43:44 +08:00
struct zio *lex_z; /* input stream */
int linenumber; /* input line counter */
int iflevel; /* level of nested $if's (for lexical analysis) */
1998-01-09 22:57:43 +08:00
struct ifState ifstate[MAX_IFS];
} LexState;
void luaX_init (lua_State *L);
void luaX_setinput (lua_State *L, LexState *LS, ZIO *z);
1998-05-27 21:08:34 +08:00
int luaX_lex (LexState *LS);
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