1997-09-16 23:25:59 +04:00
|
|
|
/*
|
2003-05-15 16:20:24 +04:00
|
|
|
** $Id: llex.c,v 1.119 2003/03/24 12:39:34 roberto Exp roberto $
|
1999-02-26 00:07:26 +03:00
|
|
|
** Lexical Analyzer
|
1997-09-16 23:25:59 +04:00
|
|
|
** See Copyright Notice in lua.h
|
|
|
|
*/
|
1996-05-30 18:04:07 +04:00
|
|
|
|
1993-12-23 00:15:16 +03:00
|
|
|
|
|
|
|
#include <ctype.h>
|
1993-12-28 19:42:29 +03:00
|
|
|
#include <string.h>
|
1993-12-23 00:15:16 +03:00
|
|
|
|
2002-12-04 20:38:31 +03:00
|
|
|
#define llex_c
|
|
|
|
|
2000-06-12 17:52:05 +04:00
|
|
|
#include "lua.h"
|
|
|
|
|
2002-05-07 21:36:56 +04:00
|
|
|
#include "ldo.h"
|
1997-09-16 23:25:59 +04:00
|
|
|
#include "llex.h"
|
|
|
|
#include "lobject.h"
|
|
|
|
#include "lparser.h"
|
1997-11-19 20:29:23 +03:00
|
|
|
#include "lstate.h"
|
1997-09-16 23:25:59 +04:00
|
|
|
#include "lstring.h"
|
|
|
|
#include "lzio.h"
|
1993-12-23 00:15:16 +03:00
|
|
|
|
1995-09-16 00:48:26 +04:00
|
|
|
|
1996-05-30 18:04:07 +04:00
|
|
|
|
2000-03-03 17:58:26 +03:00
|
|
|
#define next(LS) (LS->current = zgetc(LS->z))
|
1997-09-16 23:25:59 +04:00
|
|
|
|
|
|
|
|
1998-05-27 17:08:34 +04:00
|
|
|
|
1999-07-22 23:29:42 +04:00
|
|
|
/* ORDER RESERVED */
|
2001-11-28 23:13:13 +03:00
|
|
|
static const char *const token2string [] = {
|
|
|
|
"and", "break", "do", "else", "elseif",
|
2002-09-03 15:57:38 +04:00
|
|
|
"end", "false", "for", "function", "if",
|
2001-11-28 23:13:13 +03:00
|
|
|
"in", "local", "nil", "not", "or", "repeat",
|
2002-05-07 21:36:56 +04:00
|
|
|
"return", "then", "true", "until", "while", "*name",
|
2001-11-28 23:13:13 +03:00
|
|
|
"..", "...", "==", ">=", "<=", "~=",
|
2002-05-07 21:36:56 +04:00
|
|
|
"*number", "*string", "<eof>"
|
2001-02-23 20:17:25 +03:00
|
|
|
};
|
1998-05-27 17:08:34 +04:00
|
|
|
|
1997-09-16 23:25:59 +04:00
|
|
|
|
1999-11-22 16:12:07 +03:00
|
|
|
void luaX_init (lua_State *L) {
|
2000-03-03 17:58:26 +03:00
|
|
|
int i;
|
2000-02-08 19:39:42 +03:00
|
|
|
for (i=0; i<NUM_RESERVED; i++) {
|
2000-03-10 21:37:44 +03:00
|
|
|
TString *ts = luaS_new(L, token2string[i]);
|
2002-08-16 18:45:55 +04:00
|
|
|
luaS_fix(ts); /* reserved words are never collected */
|
2001-01-19 16:20:30 +03:00
|
|
|
lua_assert(strlen(token2string[i])+1 <= TOKEN_LEN);
|
2002-08-16 18:45:55 +04:00
|
|
|
ts->tsv.reserved = cast(lu_byte, i+1); /* reserved word */
|
1998-05-27 17:08:34 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-05-14 16:24:04 +04:00
|
|
|
#define MAXSRC 80
|
1999-03-05 00:23:39 +03:00
|
|
|
|
2000-05-24 17:54:49 +04:00
|
|
|
|
2001-11-28 23:13:13 +03:00
|
|
|
void luaX_checklimit (LexState *ls, int val, int limit, const char *msg) {
|
2000-05-24 17:54:49 +04:00
|
|
|
if (val > limit) {
|
2002-05-16 22:39:46 +04:00
|
|
|
msg = luaO_pushfstring(ls->L, "too many %s (limit=%d)", msg, limit);
|
2002-05-07 21:36:56 +04:00
|
|
|
luaX_syntaxerror(ls, msg);
|
2000-05-24 17:54:49 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-02-28 20:19:47 +03:00
|
|
|
void luaX_errorline (LexState *ls, const char *s, const char *token, int line) {
|
2002-05-07 21:36:56 +04:00
|
|
|
lua_State *L = ls->L;
|
2001-11-28 23:13:13 +03:00
|
|
|
char buff[MAXSRC];
|
2001-03-06 17:46:54 +03:00
|
|
|
luaO_chunkid(buff, getstr(ls->source), MAXSRC);
|
2003-02-28 20:19:47 +03:00
|
|
|
luaO_pushfstring(L, "%s:%d: %s near `%s'", buff, line, s, token);
|
2002-06-18 19:19:27 +04:00
|
|
|
luaD_throw(L, LUA_ERRSYNTAX);
|
1998-05-27 17:08:34 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-02-28 20:19:47 +03:00
|
|
|
static void luaX_error (LexState *ls, const char *s, const char *token) {
|
|
|
|
luaX_errorline(ls, s, token, ls->linenumber);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-05-07 21:36:56 +04:00
|
|
|
void luaX_syntaxerror (LexState *ls, const char *msg) {
|
|
|
|
const char *lasttoken;
|
|
|
|
switch (ls->t.token) {
|
|
|
|
case TK_NAME:
|
2002-10-23 23:08:13 +04:00
|
|
|
lasttoken = getstr(ls->t.seminfo.ts);
|
2002-05-07 21:36:56 +04:00
|
|
|
break;
|
|
|
|
case TK_STRING:
|
|
|
|
case TK_NUMBER:
|
2002-10-23 23:08:13 +04:00
|
|
|
lasttoken = luaZ_buffer(ls->buff);
|
2002-05-07 21:36:56 +04:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
lasttoken = luaX_token2str(ls, ls->t.token);
|
|
|
|
break;
|
1997-09-16 23:25:59 +04:00
|
|
|
}
|
2002-05-07 21:36:56 +04:00
|
|
|
luaX_error(ls, msg, lasttoken);
|
1998-05-27 17:08:34 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-05-07 21:36:56 +04:00
|
|
|
const char *luaX_token2str (LexState *ls, int token) {
|
|
|
|
if (token < FIRST_RESERVED) {
|
2003-03-24 15:39:34 +03:00
|
|
|
lua_assert(token == (unsigned char)token);
|
2002-05-16 22:39:46 +04:00
|
|
|
return luaO_pushfstring(ls->L, "%c", token);
|
2002-05-07 21:36:56 +04:00
|
|
|
}
|
2001-11-16 19:29:10 +03:00
|
|
|
else
|
2002-05-07 21:36:56 +04:00
|
|
|
return token2string[token-FIRST_RESERVED];
|
2001-11-16 19:29:10 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-05-07 21:36:56 +04:00
|
|
|
static void luaX_lexerror (LexState *ls, const char *s, int token) {
|
|
|
|
if (token == TK_EOS)
|
|
|
|
luaX_error(ls, s, luaX_token2str(ls, token));
|
|
|
|
else
|
2002-10-08 22:46:08 +04:00
|
|
|
luaX_error(ls, s, luaZ_buffer(ls->buff));
|
1997-09-16 23:25:59 +04:00
|
|
|
}
|
|
|
|
|
1997-04-12 19:01:49 +04:00
|
|
|
|
2000-05-26 18:04:04 +04:00
|
|
|
static void inclinenumber (LexState *LS) {
|
2001-02-22 21:59:59 +03:00
|
|
|
next(LS); /* skip `\n' */
|
1997-11-21 22:00:46 +03:00
|
|
|
++LS->linenumber;
|
2001-11-28 23:13:13 +03:00
|
|
|
luaX_checklimit(LS, LS->linenumber, MAX_INT, "lines in a chunk");
|
2000-05-26 18:04:04 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-06-19 22:05:14 +04:00
|
|
|
void luaX_setinput (lua_State *L, LexState *LS, ZIO *z, TString *source) {
|
2000-05-26 18:04:04 +04:00
|
|
|
LS->L = L;
|
|
|
|
LS->lookahead.token = TK_EOS; /* no look-ahead token */
|
|
|
|
LS->z = z;
|
|
|
|
LS->fs = NULL;
|
|
|
|
LS->linenumber = 1;
|
2000-06-21 22:13:56 +04:00
|
|
|
LS->lastline = 1;
|
2000-06-19 22:05:14 +04:00
|
|
|
LS->source = source;
|
2000-05-26 18:04:04 +04:00
|
|
|
next(LS); /* read first char */
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1998-12-27 23:25:20 +03:00
|
|
|
|
1997-09-16 23:25:59 +04:00
|
|
|
/*
|
|
|
|
** =======================================================
|
1999-12-14 21:33:29 +03:00
|
|
|
** LEXICAL ANALYZER
|
1997-09-16 23:25:59 +04:00
|
|
|
** =======================================================
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2002-10-09 17:00:08 +04:00
|
|
|
/* use buffer to store names, literal strings and numbers */
|
2000-09-11 21:38:42 +04:00
|
|
|
|
2002-10-09 17:00:08 +04:00
|
|
|
/* extra space to allocate when growing buffer */
|
2002-10-08 22:46:08 +04:00
|
|
|
#define EXTRABUFF 32
|
2002-10-09 17:00:08 +04:00
|
|
|
|
|
|
|
/* maximum number of chars that can be read without checking buffer size */
|
|
|
|
#define MAXNOCHECK 5
|
|
|
|
|
2002-10-08 22:46:08 +04:00
|
|
|
#define checkbuffer(LS, len) \
|
2002-10-09 17:00:08 +04:00
|
|
|
if (((len)+MAXNOCHECK)*sizeof(char) > luaZ_sizebuffer((LS)->buff)) \
|
2002-10-08 22:46:08 +04:00
|
|
|
luaZ_openspace((LS)->L, (LS)->buff, (len)+EXTRABUFF)
|
2000-09-11 21:38:42 +04:00
|
|
|
|
2002-10-08 22:46:08 +04:00
|
|
|
#define save(LS, c, l) \
|
2002-10-22 20:45:52 +04:00
|
|
|
(luaZ_buffer((LS)->buff)[l++] = cast(char, c))
|
2002-10-08 22:46:08 +04:00
|
|
|
#define save_and_next(LS, l) (save(LS, LS->current, l), next(LS))
|
2000-09-11 21:38:42 +04:00
|
|
|
|
1997-09-16 23:25:59 +04:00
|
|
|
|
2001-01-10 20:41:50 +03:00
|
|
|
static size_t readname (LexState *LS) {
|
2000-09-11 21:38:42 +04:00
|
|
|
size_t l = 0;
|
2002-10-08 22:46:08 +04:00
|
|
|
checkbuffer(LS, l);
|
2000-09-11 21:38:42 +04:00
|
|
|
do {
|
2002-10-08 22:46:08 +04:00
|
|
|
checkbuffer(LS, l);
|
|
|
|
save_and_next(LS, l);
|
2001-11-28 23:13:13 +03:00
|
|
|
} while (isalnum(LS->current) || LS->current == '_');
|
2002-10-08 22:46:08 +04:00
|
|
|
save(LS, '\0', l);
|
2001-01-10 20:41:50 +03:00
|
|
|
return l-1;
|
2000-09-11 21:38:42 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* LUA_NUMBER */
|
2002-07-08 22:14:36 +04:00
|
|
|
static void read_numeral (LexState *LS, int comma, SemInfo *seminfo) {
|
2000-09-11 21:38:42 +04:00
|
|
|
size_t l = 0;
|
2002-10-08 22:46:08 +04:00
|
|
|
checkbuffer(LS, l);
|
|
|
|
if (comma) save(LS, '.', l);
|
2000-09-11 21:38:42 +04:00
|
|
|
while (isdigit(LS->current)) {
|
2002-10-08 22:46:08 +04:00
|
|
|
checkbuffer(LS, l);
|
|
|
|
save_and_next(LS, l);
|
2000-09-11 21:38:42 +04:00
|
|
|
}
|
2001-11-28 23:13:13 +03:00
|
|
|
if (LS->current == '.') {
|
2002-10-08 22:46:08 +04:00
|
|
|
save_and_next(LS, l);
|
2001-11-28 23:13:13 +03:00
|
|
|
if (LS->current == '.') {
|
2002-10-08 22:46:08 +04:00
|
|
|
save_and_next(LS, l);
|
|
|
|
save(LS, '\0', l);
|
2002-05-07 21:36:56 +04:00
|
|
|
luaX_lexerror(LS,
|
2001-11-28 23:13:13 +03:00
|
|
|
"ambiguous syntax (decimal point x string concatenation)",
|
2001-02-23 20:17:25 +03:00
|
|
|
TK_NUMBER);
|
2000-09-11 21:38:42 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
while (isdigit(LS->current)) {
|
2002-10-08 22:46:08 +04:00
|
|
|
checkbuffer(LS, l);
|
|
|
|
save_and_next(LS, l);
|
2000-09-11 21:38:42 +04:00
|
|
|
}
|
2001-11-28 23:13:13 +03:00
|
|
|
if (LS->current == 'e' || LS->current == 'E') {
|
2002-10-08 22:46:08 +04:00
|
|
|
save_and_next(LS, l); /* read `E' */
|
2001-11-28 23:13:13 +03:00
|
|
|
if (LS->current == '+' || LS->current == '-')
|
2002-10-08 22:46:08 +04:00
|
|
|
save_and_next(LS, l); /* optional exponent sign */
|
2000-09-11 21:38:42 +04:00
|
|
|
while (isdigit(LS->current)) {
|
2002-10-08 22:46:08 +04:00
|
|
|
checkbuffer(LS, l);
|
|
|
|
save_and_next(LS, l);
|
2000-09-11 21:38:42 +04:00
|
|
|
}
|
|
|
|
}
|
2002-10-08 22:46:08 +04:00
|
|
|
save(LS, '\0', l);
|
2002-10-22 20:45:52 +04:00
|
|
|
if (!luaO_str2d(luaZ_buffer(LS->buff), &seminfo->r))
|
2002-05-07 21:36:56 +04:00
|
|
|
luaX_lexerror(LS, "malformed number", TK_NUMBER);
|
2000-09-11 21:38:42 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-09-27 21:41:58 +04:00
|
|
|
static void read_long_string (LexState *LS, SemInfo *seminfo) {
|
1995-07-06 21:47:08 +04:00
|
|
|
int cont = 0;
|
2000-09-11 21:38:42 +04:00
|
|
|
size_t l = 0;
|
2002-10-08 22:46:08 +04:00
|
|
|
checkbuffer(LS, l);
|
|
|
|
save(LS, '[', l); /* save first `[' */
|
|
|
|
save_and_next(LS, l); /* pass the second `[' */
|
2001-11-28 23:13:13 +03:00
|
|
|
if (LS->current == '\n') /* string starts with a newline? */
|
2001-03-07 15:49:37 +03:00
|
|
|
inclinenumber(LS); /* skip it */
|
1998-12-03 18:45:15 +03:00
|
|
|
for (;;) {
|
2002-10-08 22:46:08 +04:00
|
|
|
checkbuffer(LS, l);
|
1997-11-21 22:00:46 +03:00
|
|
|
switch (LS->current) {
|
1997-06-16 20:50:22 +04:00
|
|
|
case EOZ:
|
2002-10-08 22:46:08 +04:00
|
|
|
save(LS, '\0', l);
|
2002-05-07 21:36:56 +04:00
|
|
|
luaX_lexerror(LS, (seminfo) ? "unfinished long string" :
|
2002-03-08 22:25:24 +03:00
|
|
|
"unfinished long comment", TK_EOS);
|
2000-01-25 21:44:21 +03:00
|
|
|
break; /* to avoid warnings */
|
2001-11-28 23:13:13 +03:00
|
|
|
case '[':
|
2002-10-08 22:46:08 +04:00
|
|
|
save_and_next(LS, l);
|
2001-11-28 23:13:13 +03:00
|
|
|
if (LS->current == '[') {
|
1995-07-06 21:47:08 +04:00
|
|
|
cont++;
|
2002-10-08 22:46:08 +04:00
|
|
|
save_and_next(LS, l);
|
1995-07-06 21:47:08 +04:00
|
|
|
}
|
1996-05-30 18:04:07 +04:00
|
|
|
continue;
|
2001-11-28 23:13:13 +03:00
|
|
|
case ']':
|
2002-10-08 22:46:08 +04:00
|
|
|
save_and_next(LS, l);
|
2001-11-28 23:13:13 +03:00
|
|
|
if (LS->current == ']') {
|
1996-05-30 18:04:07 +04:00
|
|
|
if (cont == 0) goto endloop;
|
1995-07-06 21:47:08 +04:00
|
|
|
cont--;
|
2002-10-08 22:46:08 +04:00
|
|
|
save_and_next(LS, l);
|
1995-07-06 21:47:08 +04:00
|
|
|
}
|
1996-05-30 18:04:07 +04:00
|
|
|
continue;
|
2001-11-28 23:13:13 +03:00
|
|
|
case '\n':
|
2002-10-08 22:46:08 +04:00
|
|
|
save(LS, '\n', l);
|
2000-05-26 18:04:04 +04:00
|
|
|
inclinenumber(LS);
|
2002-03-08 22:07:01 +03:00
|
|
|
if (!seminfo) l = 0; /* reset buffer to avoid wasting space */
|
1996-09-26 01:52:00 +04:00
|
|
|
continue;
|
1995-07-06 21:47:08 +04:00
|
|
|
default:
|
2002-10-08 22:46:08 +04:00
|
|
|
save_and_next(LS, l);
|
1995-07-06 21:47:08 +04:00
|
|
|
}
|
1996-05-30 18:04:07 +04:00
|
|
|
} endloop:
|
2002-10-08 22:46:08 +04:00
|
|
|
save_and_next(LS, l); /* skip the second `]' */
|
|
|
|
save(LS, '\0', l);
|
2002-03-08 22:07:01 +03:00
|
|
|
if (seminfo)
|
2002-10-08 22:46:08 +04:00
|
|
|
seminfo->ts = luaS_newlstr(LS->L, luaZ_buffer(LS->buff) + 2, l - 5);
|
2000-01-25 21:44:21 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-09-27 21:41:58 +04:00
|
|
|
static void read_string (LexState *LS, int del, SemInfo *seminfo) {
|
2000-09-11 21:38:42 +04:00
|
|
|
size_t l = 0;
|
2002-10-08 22:46:08 +04:00
|
|
|
checkbuffer(LS, l);
|
|
|
|
save_and_next(LS, l);
|
2000-01-25 21:44:21 +03:00
|
|
|
while (LS->current != del) {
|
2002-10-08 22:46:08 +04:00
|
|
|
checkbuffer(LS, l);
|
2000-01-25 21:44:21 +03:00
|
|
|
switch (LS->current) {
|
2002-05-07 21:36:56 +04:00
|
|
|
case EOZ:
|
2002-10-08 22:46:08 +04:00
|
|
|
save(LS, '\0', l);
|
2002-05-07 21:36:56 +04:00
|
|
|
luaX_lexerror(LS, "unfinished string", TK_EOS);
|
|
|
|
break; /* to avoid warnings */
|
|
|
|
case '\n':
|
2002-10-08 22:46:08 +04:00
|
|
|
save(LS, '\0', l);
|
2002-05-07 21:36:56 +04:00
|
|
|
luaX_lexerror(LS, "unfinished string", TK_STRING);
|
2000-01-25 21:44:21 +03:00
|
|
|
break; /* to avoid warnings */
|
2001-11-28 23:13:13 +03:00
|
|
|
case '\\':
|
2001-02-22 21:59:59 +03:00
|
|
|
next(LS); /* do not save the `\' */
|
2000-01-25 21:44:21 +03:00
|
|
|
switch (LS->current) {
|
2002-10-08 22:46:08 +04:00
|
|
|
case 'a': save(LS, '\a', l); next(LS); break;
|
|
|
|
case 'b': save(LS, '\b', l); next(LS); break;
|
|
|
|
case 'f': save(LS, '\f', l); next(LS); break;
|
|
|
|
case 'n': save(LS, '\n', l); next(LS); break;
|
|
|
|
case 'r': save(LS, '\r', l); next(LS); break;
|
|
|
|
case 't': save(LS, '\t', l); next(LS); break;
|
|
|
|
case 'v': save(LS, '\v', l); next(LS); break;
|
|
|
|
case '\n': save(LS, '\n', l); inclinenumber(LS); break;
|
2002-07-11 00:43:53 +04:00
|
|
|
case EOZ: break; /* will raise an error next loop */
|
2001-02-23 20:17:25 +03:00
|
|
|
default: {
|
|
|
|
if (!isdigit(LS->current))
|
2002-10-08 22:46:08 +04:00
|
|
|
save_and_next(LS, l); /* handles \\, \", \', and \? */
|
2001-02-23 20:17:25 +03:00
|
|
|
else { /* \xxx */
|
|
|
|
int c = 0;
|
|
|
|
int i = 0;
|
|
|
|
do {
|
2001-11-28 23:13:13 +03:00
|
|
|
c = 10*c + (LS->current-'0');
|
2001-02-23 20:17:25 +03:00
|
|
|
next(LS);
|
|
|
|
} while (++i<3 && isdigit(LS->current));
|
|
|
|
if (c > UCHAR_MAX) {
|
2002-10-08 22:46:08 +04:00
|
|
|
save(LS, '\0', l);
|
2002-05-07 21:36:56 +04:00
|
|
|
luaX_lexerror(LS, "escape sequence too large", TK_STRING);
|
2001-02-23 20:17:25 +03:00
|
|
|
}
|
2002-10-08 22:46:08 +04:00
|
|
|
save(LS, c, l);
|
2000-09-11 21:38:42 +04:00
|
|
|
}
|
2000-01-25 21:44:21 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
2002-10-08 22:46:08 +04:00
|
|
|
save_and_next(LS, l);
|
2000-01-25 21:44:21 +03:00
|
|
|
}
|
|
|
|
}
|
2002-10-08 22:46:08 +04:00
|
|
|
save_and_next(LS, l); /* skip delimiter */
|
|
|
|
save(LS, '\0', l);
|
|
|
|
seminfo->ts = luaS_newlstr(LS->L, luaZ_buffer(LS->buff) + 1, l - 3);
|
1995-07-06 21:47:08 +04:00
|
|
|
}
|
|
|
|
|
1997-09-16 23:25:59 +04:00
|
|
|
|
2000-09-27 21:41:58 +04:00
|
|
|
int luaX_lex (LexState *LS, SemInfo *seminfo) {
|
1998-12-03 18:45:15 +03:00
|
|
|
for (;;) {
|
1997-11-21 22:00:46 +03:00
|
|
|
switch (LS->current) {
|
1993-12-23 00:39:15 +03:00
|
|
|
|
2002-06-04 00:12:21 +04:00
|
|
|
case '\n': {
|
2000-05-26 18:04:04 +04:00
|
|
|
inclinenumber(LS);
|
1998-01-09 17:44:55 +03:00
|
|
|
continue;
|
2002-06-04 00:12:21 +04:00
|
|
|
}
|
|
|
|
case '-': {
|
2000-01-25 21:44:21 +03:00
|
|
|
next(LS);
|
2001-11-28 23:13:13 +03:00
|
|
|
if (LS->current != '-') return '-';
|
2002-03-08 22:07:01 +03:00
|
|
|
/* else is a comment */
|
|
|
|
next(LS);
|
|
|
|
if (LS->current == '[' && (next(LS), LS->current == '['))
|
|
|
|
read_long_string(LS, NULL); /* long comment */
|
|
|
|
else /* short comment */
|
|
|
|
while (LS->current != '\n' && LS->current != EOZ)
|
|
|
|
next(LS);
|
1993-12-23 00:15:16 +03:00
|
|
|
continue;
|
2002-06-04 00:12:21 +04:00
|
|
|
}
|
|
|
|
case '[': {
|
2000-09-11 21:38:42 +04:00
|
|
|
next(LS);
|
2001-11-28 23:13:13 +03:00
|
|
|
if (LS->current != '[') return '[';
|
1997-09-16 23:25:59 +04:00
|
|
|
else {
|
2000-09-27 21:41:58 +04:00
|
|
|
read_long_string(LS, seminfo);
|
2000-03-10 21:37:44 +03:00
|
|
|
return TK_STRING;
|
1995-07-06 21:47:08 +04:00
|
|
|
}
|
2002-06-04 00:12:21 +04:00
|
|
|
}
|
|
|
|
case '=': {
|
2000-01-25 21:44:21 +03:00
|
|
|
next(LS);
|
2001-11-28 23:13:13 +03:00
|
|
|
if (LS->current != '=') return '=';
|
2000-03-10 21:37:44 +03:00
|
|
|
else { next(LS); return TK_EQ; }
|
2002-06-04 00:12:21 +04:00
|
|
|
}
|
|
|
|
case '<': {
|
2000-01-25 21:44:21 +03:00
|
|
|
next(LS);
|
2001-11-28 23:13:13 +03:00
|
|
|
if (LS->current != '=') return '<';
|
2000-03-10 21:37:44 +03:00
|
|
|
else { next(LS); return TK_LE; }
|
2002-06-04 00:12:21 +04:00
|
|
|
}
|
|
|
|
case '>': {
|
2000-01-25 21:44:21 +03:00
|
|
|
next(LS);
|
2001-11-28 23:13:13 +03:00
|
|
|
if (LS->current != '=') return '>';
|
2000-03-10 21:37:44 +03:00
|
|
|
else { next(LS); return TK_GE; }
|
2002-06-04 00:12:21 +04:00
|
|
|
}
|
|
|
|
case '~': {
|
2000-01-25 21:44:21 +03:00
|
|
|
next(LS);
|
2001-11-28 23:13:13 +03:00
|
|
|
if (LS->current != '=') return '~';
|
2000-03-10 21:37:44 +03:00
|
|
|
else { next(LS); return TK_NE; }
|
2002-06-04 00:12:21 +04:00
|
|
|
}
|
2001-11-28 23:13:13 +03:00
|
|
|
case '"':
|
2002-06-04 00:12:21 +04:00
|
|
|
case '\'': {
|
2000-09-27 21:41:58 +04:00
|
|
|
read_string(LS, LS->current, seminfo);
|
2000-03-10 21:37:44 +03:00
|
|
|
return TK_STRING;
|
2002-06-04 00:12:21 +04:00
|
|
|
}
|
|
|
|
case '.': {
|
2000-09-11 21:38:42 +04:00
|
|
|
next(LS);
|
2001-11-28 23:13:13 +03:00
|
|
|
if (LS->current == '.') {
|
2000-01-25 21:44:21 +03:00
|
|
|
next(LS);
|
2001-11-28 23:13:13 +03:00
|
|
|
if (LS->current == '.') {
|
2000-01-25 21:44:21 +03:00
|
|
|
next(LS);
|
2000-03-10 21:37:44 +03:00
|
|
|
return TK_DOTS; /* ... */
|
1996-05-29 01:07:32 +04:00
|
|
|
}
|
2000-04-07 17:11:49 +04:00
|
|
|
else return TK_CONCAT; /* .. */
|
1993-12-23 00:15:16 +03:00
|
|
|
}
|
2001-11-28 23:13:13 +03:00
|
|
|
else if (!isdigit(LS->current)) return '.';
|
2000-09-11 21:38:42 +04:00
|
|
|
else {
|
2002-07-08 22:14:36 +04:00
|
|
|
read_numeral(LS, 1, seminfo);
|
2000-09-11 21:38:42 +04:00
|
|
|
return TK_NUMBER;
|
|
|
|
}
|
2002-06-04 00:12:21 +04:00
|
|
|
}
|
|
|
|
case EOZ: {
|
2000-03-10 21:37:44 +03:00
|
|
|
return TK_EOS;
|
2002-06-04 00:12:21 +04:00
|
|
|
}
|
2001-02-23 20:17:25 +03:00
|
|
|
default: {
|
2002-06-04 00:12:21 +04:00
|
|
|
if (isspace(LS->current)) {
|
|
|
|
next(LS);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
else if (isdigit(LS->current)) {
|
2002-07-08 22:14:36 +04:00
|
|
|
read_numeral(LS, 0, seminfo);
|
2001-02-23 20:17:25 +03:00
|
|
|
return TK_NUMBER;
|
1997-07-01 23:32:41 +04:00
|
|
|
}
|
2001-11-28 23:13:13 +03:00
|
|
|
else if (isalpha(LS->current) || LS->current == '_') {
|
2001-02-23 20:17:25 +03:00
|
|
|
/* identifier or reserved word */
|
2001-01-10 20:41:50 +03:00
|
|
|
size_t l = readname(LS);
|
2002-10-08 22:46:08 +04:00
|
|
|
TString *ts = luaS_newlstr(LS->L, luaZ_buffer(LS->buff), l);
|
2002-08-16 18:45:55 +04:00
|
|
|
if (ts->tsv.reserved > 0) /* reserved word? */
|
|
|
|
return ts->tsv.reserved - 1 + FIRST_RESERVED;
|
2000-09-27 21:41:58 +04:00
|
|
|
seminfo->ts = ts;
|
2000-03-10 21:37:44 +03:00
|
|
|
return TK_NAME;
|
1997-07-01 23:32:41 +04:00
|
|
|
}
|
2001-02-23 20:17:25 +03:00
|
|
|
else {
|
2001-11-28 23:13:13 +03:00
|
|
|
int c = LS->current;
|
2001-02-23 20:17:25 +03:00
|
|
|
if (iscntrl(c))
|
2002-05-07 21:36:56 +04:00
|
|
|
luaX_error(LS, "invalid control char",
|
2002-05-16 22:39:46 +04:00
|
|
|
luaO_pushfstring(LS->L, "char(%d)", c));
|
2001-02-23 20:17:25 +03:00
|
|
|
next(LS);
|
|
|
|
return c; /* single-char tokens (+ - / ...) */
|
|
|
|
}
|
|
|
|
}
|
1993-12-23 00:15:16 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
1996-05-30 18:04:07 +04:00
|
|
|
|
2002-07-08 22:14:36 +04:00
|
|
|
#undef next
|