1
0
mirror of https://github.com/lua/lua.git synced 2025-01-14 05:43:00 +08:00
lua/llex.h

92 lines
2.3 KiB
C
Raw Normal View History

1997-09-16 16:25:59 -03:00
/*
** $Id: llex.h $
1999-02-25 18:07:26 -03:00
** Lexical Analyzer
1997-09-16 16:25:59 -03:00
** See Copyright Notice in lua.h
*/
#ifndef llex_h
#define llex_h
#include <limits.h>
1997-09-16 16:25:59 -03:00
#include "lobject.h"
#include "lzio.h"
/*
** Single-char tokens (terminal symbols) are represented by their own
** numeric code. Other tokens start at the following value.
*/
#define FIRST_RESERVED (UCHAR_MAX + 1)
1998-05-27 10:08:34 -03:00
#if !defined(LUA_ENV)
#define LUA_ENV "_ENV"
#endif
1999-07-22 16:29:42 -03:00
/*
* WARNING: if you change the order of this enumeration,
* grep "ORDER RESERVED"
*/
1998-05-27 10:08:34 -03:00
enum RESERVED {
/* terminal symbols denoted by reserved words */
2000-04-05 14:51:58 -03:00
TK_AND = FIRST_RESERVED, TK_BREAK,
2001-12-11 20:48:44 -02:00
TK_DO, TK_ELSE, TK_ELSEIF, TK_END, TK_FALSE, TK_FOR, TK_FUNCTION,
2011-02-02 12:55:17 -02:00
TK_GOTO, TK_IF, TK_IN, TK_LOCAL, TK_NIL, TK_NOT, TK_OR, TK_REPEAT,
2018-04-04 11:23:41 -03:00
TK_RETURN, TK_THEN, TK_TRUE, TK_UNTIL, TK_WHILE,
1998-05-27 10:08:34 -03:00
/* other terminal symbols */
2013-04-26 10:08:29 -03:00
TK_IDIV, TK_CONCAT, TK_DOTS, TK_EQ, TK_GE, TK_LE, TK_NE,
TK_SHL, TK_SHR,
2013-04-26 10:08:29 -03:00
TK_DBCOLON, TK_EOS,
TK_FLT, TK_INT, TK_NAME, TK_STRING
2000-02-08 14:39:42 -02:00
};
2000-03-03 11:58:26 -03:00
/* number of reserved words */
2018-01-28 13:13:26 -02:00
#define NUM_RESERVED (cast_int(TK_WHILE-FIRST_RESERVED + 1))
1998-05-27 10:08:34 -03:00
typedef union {
lua_Number r;
lua_Integer i;
TString *ts;
} SemInfo; /* semantics information */
typedef struct Token {
int token;
SemInfo seminfo;
} Token;
/* state of the lexer plus state of the parser when shared by all
functions */
typedef struct LexState {
int current; /* current character (charint) */
int linenumber; /* input line counter */
2014-10-25 09:50:46 -02:00
int lastline; /* line of last token 'consumed' */
2000-05-25 15:59:59 -03:00
Token t; /* current token */
Token lookahead; /* look ahead token */
struct FuncState *fs; /* current function (parser) */
struct lua_State *L;
ZIO *z; /* input stream */
Mbuffer *buff; /* buffer for tokens */
Table *h; /* to avoid collection/reuse strings */
struct Dyndata *dyd; /* dynamic structures used by the parser */
2000-06-19 15:05:14 -03:00
TString *source; /* current source name */
TString *envn; /* environment variable name */
} LexState;
LUAI_FUNC void luaX_init (lua_State *L);
2006-03-23 15:23:32 -03:00
LUAI_FUNC void luaX_setinput (lua_State *L, LexState *ls, ZIO *z,
2011-02-23 10:13:10 -03:00
TString *source, int firstchar);
2006-03-23 15:23:32 -03:00
LUAI_FUNC TString *luaX_newstring (LexState *ls, const char *str, size_t l);
2005-12-07 13:43:05 -02:00
LUAI_FUNC void luaX_next (LexState *ls);
2007-05-11 14:28:56 -03:00
LUAI_FUNC int luaX_lookahead (LexState *ls);
2011-11-30 10:43:51 -02:00
LUAI_FUNC l_noret luaX_syntaxerror (LexState *ls, const char *s);
LUAI_FUNC const char *luaX_token2str (LexState *ls, int token);
1997-09-16 16:25:59 -03:00
#endif