summaryrefslogtreecommitdiff
path: root/llex.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1998-05-27 10:08:34 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1998-05-27 10:08:34 -0300
commit7e59a8901d063dbea4eb0693c9c2d85bda1fc5f6 (patch)
tree1834168cd16e821a017e3d8408978f89e6c2ddaf /llex.h
parentabc6eac404da8181ad945ac6950f61a65ba7dfa5 (diff)
downloadlua-github-7e59a8901d063dbea4eb0693c9c2d85bda1fc5f6.tar.gz
NEW LL(1) PARSER
Diffstat (limited to 'llex.h')
-rw-r--r--llex.h31
1 files changed, 26 insertions, 5 deletions
diff --git a/llex.h b/llex.h
index dcce5149..3947bf5d 100644
--- a/llex.h
+++ b/llex.h
@@ -1,5 +1,5 @@
/*
-** $Id: llex.h,v 1.6 1997/12/17 20:48:58 roberto Exp roberto $
+** $Id: llex.h,v 1.7 1998/01/09 14:57:43 roberto Exp $
** Lexical Analizer
** See Copyright Notice in lua.h
*/
@@ -11,6 +11,20 @@
#include "lzio.h"
+#define FIRST_RESERVED 260
+
+/* maximum length of a reserved word (+1 for terminal 0) */
+#define TOKEN_LEN 15
+
+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};
+
+
#define MAX_IFS 5
/* "ifstate" keeps the state of each nested $if the lexical is dealing with. */
@@ -24,18 +38,25 @@ struct ifState {
typedef struct LexState {
int current; /* look ahead character */
+ int token; /* look ahead token */
+ struct FuncState *fs; /* 'FuncState' is private for the parser */
+ union {
+ real r;
+ TaggedString *ts;
+ } seminfo; /* semantics information */
struct zio *lex_z; /* input stream */
int linenumber; /* input line counter */
- int linelasttoken; /* line where last token was read */
- int lastline; /* last line wherein a SETLINE was generated */
int iflevel; /* level of nested $if's (for lexical analysis) */
struct ifState ifstate[MAX_IFS];
} LexState;
void luaX_init (void);
-void luaX_setinput (ZIO *z);
-char *luaX_lasttoken (void);
+void luaX_setinput (LexState *LS, ZIO *z);
+int luaX_lex (LexState *LS);
+void luaX_syntaxerror (LexState *ls, char *s, char *token);
+void luaX_error (LexState *ls, char *s);
+void luaX_token2str (LexState *ls, int token, char *s);
#endif