lua/llex.h

72 lines
1.8 KiB
C
Raw Normal View History

1997-09-16 21:25:59 +02:00
/*
2000-04-07 15:11:49 +02:00
** $Id: llex.h,v 1.22 2000/04/05 17:51:58 roberto Exp roberto $
1999-02-25 22:07:26 +01:00
** Lexical Analyzer
1997-09-16 21:25:59 +02:00
** See Copyright Notice in lua.h
*/
#ifndef llex_h
#define llex_h
#include "lobject.h"
#include "lzio.h"
2000-03-03 15:58:26 +01:00
#define FIRST_RESERVED 257
1998-05-27 15:08:34 +02:00
1999-12-27 18:33:22 +01:00
/* maximum length of a reserved word (+1 for final 0) */
1998-05-27 15:08:34 +02:00
#define TOKEN_LEN 15
1999-07-22 21:29:42 +02:00
/*
* WARNING: if you change the order of this enumeration,
* grep "ORDER RESERVED"
*/
1998-05-27 15:08:34 +02:00
enum RESERVED {
/* terminal symbols denoted by reserved words */
2000-04-05 19:51:58 +02:00
TK_AND = FIRST_RESERVED, TK_BREAK,
2000-03-10 19:37:44 +01:00
TK_DO, TK_ELSE, TK_ELSEIF, TK_END, TK_FUNCTION, TK_IF, TK_LOCAL,
TK_NIL, TK_NOT, TK_OR, TK_REPEAT, TK_RETURN, TK_THEN, TK_UNTIL, TK_WHILE,
1998-05-27 15:08:34 +02:00
/* other terminal symbols */
2000-04-07 15:11:49 +02:00
TK_NAME, TK_CONCAT, TK_DOTS, TK_EQ, TK_GE, TK_LE, TK_NE, TK_NUMBER,
2000-03-10 19:37:44 +01:00
TK_STRING, TK_EOS
2000-02-08 17:39:42 +01:00
};
2000-03-03 15:58:26 +01:00
/* number of reserved words */
2000-03-10 19:37:44 +01:00
#define NUM_RESERVED ((int)(TK_WHILE-FIRST_RESERVED+1))
1998-05-27 15:08:34 +02:00
1999-12-27 18:33:22 +01:00
/* `ifState' keeps the state of each nested $if the lexical is dealing with. */
struct ifState {
1999-02-25 22:07:26 +01:00
int elsepart; /* true if it's in the $else part */
int condition; /* true if $if condition is true */
1998-06-19 18:14:09 +02:00
int skip; /* true if part must be skipped */
};
typedef struct LexState {
int current; /* look ahead character */
1998-05-27 15:08:34 +02:00
int token; /* look ahead token */
2000-03-03 15:58:26 +01:00
struct FuncState *fs; /* `FuncState' is private to the parser */
struct lua_State *L;
1998-05-27 15:08:34 +02:00
union {
2000-03-10 19:37:44 +01:00
Number r;
TString *ts;
1998-05-27 15:08:34 +02:00
} seminfo; /* semantics information */
2000-03-03 15:58:26 +01:00
struct zio *z; /* input stream */
1997-12-02 13:43:44 +01:00
int linenumber; /* input line counter */
int iflevel; /* level of nested $if's (for lexical analysis) */
1998-01-09 15:57:43 +01: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 15:08:34 +02:00
int luaX_lex (LexState *LS);
1999-08-16 22:52:00 +02:00
void luaX_syntaxerror (LexState *ls, const char *s, const char *token);
2000-01-25 19:44:21 +01:00
void luaX_error (LexState *ls, const char *s, int token);
void luaX_token2str (int token, char *s);
1997-09-16 21:25:59 +02:00
#endif