1997-09-16 12:25:59 -07:00
|
|
|
/*
|
2000-06-12 06:52:05 -07:00
|
|
|
** $Id: llex.c,v 1.62 2000/05/26 14:04:04 roberto Exp roberto $
|
1999-02-25 13:07:26 -08:00
|
|
|
** Lexical Analyzer
|
1997-09-16 12:25:59 -07:00
|
|
|
** See Copyright Notice in lua.h
|
|
|
|
*/
|
1996-05-30 07:04:07 -07:00
|
|
|
|
1993-12-22 13:15:16 -08:00
|
|
|
|
|
|
|
#include <ctype.h>
|
1999-12-02 08:41:29 -08:00
|
|
|
#include <stdio.h>
|
1993-12-28 08:42:29 -08:00
|
|
|
#include <string.h>
|
1993-12-22 13:15:16 -08:00
|
|
|
|
1999-11-22 05:12:07 -08:00
|
|
|
#define LUA_REENTRANT
|
|
|
|
|
2000-06-12 06:52:05 -07:00
|
|
|
#include "lua.h"
|
|
|
|
|
1997-12-17 12:48:58 -08:00
|
|
|
#include "lauxlib.h"
|
1997-09-16 12:25:59 -07:00
|
|
|
#include "llex.h"
|
|
|
|
#include "lmem.h"
|
|
|
|
#include "lobject.h"
|
|
|
|
#include "lparser.h"
|
1997-11-19 09:29:23 -08:00
|
|
|
#include "lstate.h"
|
1997-09-16 12:25:59 -07:00
|
|
|
#include "lstring.h"
|
2000-05-08 12:32:53 -07:00
|
|
|
#include "ltable.h"
|
1996-02-07 06:14:40 -08:00
|
|
|
#include "luadebug.h"
|
1997-09-16 12:25:59 -07:00
|
|
|
#include "lzio.h"
|
1993-12-22 13:15:16 -08:00
|
|
|
|
1995-09-15 13:48:26 -07:00
|
|
|
|
1996-05-30 07:04:07 -07:00
|
|
|
|
2000-03-03 06:58:26 -08:00
|
|
|
#define next(LS) (LS->current = zgetc(LS->z))
|
1997-09-16 12:25:59 -07:00
|
|
|
|
|
|
|
|
1999-11-22 05:12:07 -08:00
|
|
|
#define save(L, c) luaL_addchar(L, c)
|
|
|
|
#define save_and_next(L, LS) (save(L, LS->current), next(LS))
|
1998-05-27 06:08:34 -07:00
|
|
|
|
|
|
|
|
1999-07-22 12:29:42 -07:00
|
|
|
/* ORDER RESERVED */
|
2000-04-05 10:51:58 -07:00
|
|
|
static const char *const token2string [] = {
|
2000-04-12 11:57:19 -07:00
|
|
|
"and", "break", "do", "else", "elseif", "end", "for",
|
1999-08-16 13:52:00 -07:00
|
|
|
"function", "if", "local", "nil", "not", "or", "repeat", "return", "then",
|
2000-02-08 08:39:42 -08:00
|
|
|
"until", "while", "", "..", "...", "==", ">=", "<=", "~=", "", "", "<eof>"};
|
1998-05-27 06:08:34 -07:00
|
|
|
|
1997-09-16 12:25:59 -07:00
|
|
|
|
1999-11-22 05:12:07 -08:00
|
|
|
void luaX_init (lua_State *L) {
|
2000-03-03 06:58:26 -08:00
|
|
|
int i;
|
2000-02-08 08:39:42 -08:00
|
|
|
for (i=0; i<NUM_RESERVED; i++) {
|
2000-03-10 10:37:44 -08:00
|
|
|
TString *ts = luaS_new(L, token2string[i]);
|
1999-10-19 06:33:22 -07:00
|
|
|
ts->marked = (unsigned char)(RESERVEDMARK+i); /* reserved word */
|
1998-05-27 06:08:34 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-05-14 05:24:04 -07:00
|
|
|
#define MAXSRC 80
|
1999-03-04 13:23:39 -08:00
|
|
|
|
2000-05-24 06:54:49 -07:00
|
|
|
|
|
|
|
void luaX_checklimit (LexState *ls, int val, int limit, const char *msg) {
|
|
|
|
if (val > limit) {
|
|
|
|
char buff[100];
|
|
|
|
sprintf(buff, "too many %.50s (limit=%d)", msg, limit);
|
2000-05-24 11:04:17 -07:00
|
|
|
luaX_error(ls, buff, ls->t.token);
|
2000-05-24 06:54:49 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-08-16 13:52:00 -07:00
|
|
|
void luaX_syntaxerror (LexState *ls, const char *s, const char *token) {
|
1999-03-04 13:23:39 -08:00
|
|
|
char buff[MAXSRC];
|
2000-03-03 06:58:26 -08:00
|
|
|
luaL_chunkid(buff, zname(ls->z), sizeof(buff));
|
1999-11-22 05:12:07 -08:00
|
|
|
luaL_verror(ls->L, "%.100s;\n last token read: `%.50s' at line %d in %.80s",
|
1999-03-04 13:23:39 -08:00
|
|
|
s, token, ls->linenumber, buff);
|
1998-05-27 06:08:34 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-01-25 10:44:21 -08:00
|
|
|
void luaX_error (LexState *ls, const char *s, int token) {
|
|
|
|
char buff[TOKEN_LEN];
|
|
|
|
luaX_token2str(token, buff);
|
|
|
|
if (buff[0] == '\0') {
|
|
|
|
save(ls->L, '\0');
|
|
|
|
luaX_syntaxerror(ls, s, luaL_buffer(ls->L));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
luaX_syntaxerror(ls, s, buff);
|
1998-05-27 06:08:34 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1998-07-24 11:02:38 -07:00
|
|
|
void luaX_token2str (int token, char *s) {
|
1999-12-14 10:33:29 -08:00
|
|
|
if (token < 256) {
|
1998-12-28 05:44:54 -08:00
|
|
|
s[0] = (char)token;
|
1998-12-27 12:25:20 -08:00
|
|
|
s[1] = '\0';
|
1997-09-16 12:25:59 -07:00
|
|
|
}
|
1998-05-27 06:08:34 -07:00
|
|
|
else
|
2000-02-08 08:39:42 -08:00
|
|
|
strcpy(s, token2string[token-FIRST_RESERVED]);
|
1998-05-27 06:08:34 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void luaX_invalidchar (LexState *ls, int c) {
|
1999-05-14 05:24:04 -07:00
|
|
|
char buff[8];
|
1999-03-25 13:05:05 -08:00
|
|
|
sprintf(buff, "0x%02X", c);
|
1998-05-27 06:08:34 -07:00
|
|
|
luaX_syntaxerror(ls, "invalid control char", buff);
|
1997-09-16 12:25:59 -07:00
|
|
|
}
|
|
|
|
|
1997-04-12 08:01:49 -07:00
|
|
|
|
2000-05-26 07:04:04 -07:00
|
|
|
static const char *readname (lua_State *L, LexState *LS) {
|
1999-11-22 05:12:07 -08:00
|
|
|
luaL_resetbuffer(L);
|
2000-05-26 07:04:04 -07:00
|
|
|
do {
|
|
|
|
save_and_next(L, LS);
|
|
|
|
} while (isalnum(LS->current) || LS->current == '_');
|
|
|
|
save(L, '\0');
|
|
|
|
return L->Mbuffer+L->Mbuffbase;
|
1993-12-22 13:15:16 -08:00
|
|
|
}
|
|
|
|
|
1997-04-12 08:01:49 -07:00
|
|
|
|
2000-05-26 07:04:04 -07:00
|
|
|
static void inclinenumber (LexState *LS) {
|
1997-11-21 11:00:46 -08:00
|
|
|
next(LS); /* skip '\n' */
|
|
|
|
++LS->linenumber;
|
2000-05-24 06:54:49 -07:00
|
|
|
luaX_checklimit(LS, LS->linenumber, MAX_INT, "lines in a chunk");
|
2000-05-26 07:04:04 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void checkpragma (lua_State *L, LexState *LS) {
|
|
|
|
static const char *const pragmas [] = {"debug", "nodebug", NULL};
|
1997-11-21 11:00:46 -08:00
|
|
|
if (LS->current == '$') { /* is a pragma? */
|
2000-05-26 07:04:04 -07:00
|
|
|
switch (luaL_findstring(readname(L, LS)+1, pragmas)) {
|
1997-04-07 07:48:53 -07:00
|
|
|
case 0: /* debug */
|
2000-05-26 07:04:04 -07:00
|
|
|
L->debug = 1;
|
1997-04-07 07:48:53 -07:00
|
|
|
break;
|
|
|
|
case 1: /* nodebug */
|
2000-05-26 07:04:04 -07:00
|
|
|
L->debug = 0;
|
1997-04-14 12:08:09 -07:00
|
|
|
break;
|
1997-04-12 08:01:49 -07:00
|
|
|
default:
|
2000-05-26 07:04:04 -07:00
|
|
|
luaX_error(LS, "unknown pragma", TK_STRING);
|
1996-09-25 14:52:00 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
1993-12-22 13:15:16 -08:00
|
|
|
|
1997-09-16 12:25:59 -07:00
|
|
|
|
2000-05-26 07:04:04 -07:00
|
|
|
void luaX_setinput (lua_State *L, LexState *LS, ZIO *z) {
|
|
|
|
LS->L = L;
|
|
|
|
LS->lookahead.token = TK_EOS; /* no look-ahead token */
|
|
|
|
LS->z = z;
|
|
|
|
LS->fs = NULL;
|
|
|
|
LS->linenumber = 1;
|
|
|
|
next(LS); /* read first char */
|
|
|
|
if (LS->current == '#') {
|
|
|
|
do { /* skip first line */
|
|
|
|
next(LS);
|
|
|
|
} while (LS->current != '\n' && LS->current != EOZ);
|
|
|
|
}
|
|
|
|
else checkpragma(L, LS);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1998-12-27 12:25:20 -08:00
|
|
|
|
1997-09-16 12:25:59 -07:00
|
|
|
/*
|
|
|
|
** =======================================================
|
1999-12-14 10:33:29 -08:00
|
|
|
** LEXICAL ANALYZER
|
1997-09-16 12:25:59 -07:00
|
|
|
** =======================================================
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
2000-01-25 10:44:21 -08:00
|
|
|
static void read_long_string (lua_State *L, LexState *LS) {
|
1995-07-06 10:47:08 -07:00
|
|
|
int cont = 0;
|
1998-12-03 07:45:15 -08:00
|
|
|
for (;;) {
|
1997-11-21 11:00:46 -08:00
|
|
|
switch (LS->current) {
|
1997-06-16 09:50:22 -07:00
|
|
|
case EOZ:
|
2000-03-10 10:37:44 -08:00
|
|
|
luaX_error(LS, "unfinished long string", TK_STRING);
|
2000-01-25 10:44:21 -08:00
|
|
|
break; /* to avoid warnings */
|
1995-07-06 10:47:08 -07:00
|
|
|
case '[':
|
1999-11-22 05:12:07 -08:00
|
|
|
save_and_next(L, LS);
|
1997-11-21 11:00:46 -08:00
|
|
|
if (LS->current == '[') {
|
1995-07-06 10:47:08 -07:00
|
|
|
cont++;
|
1999-11-22 05:12:07 -08:00
|
|
|
save_and_next(L, LS);
|
1995-07-06 10:47:08 -07:00
|
|
|
}
|
1996-05-30 07:04:07 -07:00
|
|
|
continue;
|
1995-07-06 10:47:08 -07:00
|
|
|
case ']':
|
1999-11-22 05:12:07 -08:00
|
|
|
save_and_next(L, LS);
|
1997-11-21 11:00:46 -08:00
|
|
|
if (LS->current == ']') {
|
1996-05-30 07:04:07 -07:00
|
|
|
if (cont == 0) goto endloop;
|
1995-07-06 10:47:08 -07:00
|
|
|
cont--;
|
1999-11-22 05:12:07 -08:00
|
|
|
save_and_next(L, LS);
|
1995-07-06 10:47:08 -07:00
|
|
|
}
|
1996-05-30 07:04:07 -07:00
|
|
|
continue;
|
1995-09-15 13:48:26 -07:00
|
|
|
case '\n':
|
1999-11-22 05:12:07 -08:00
|
|
|
save(L, '\n');
|
2000-05-26 07:04:04 -07:00
|
|
|
inclinenumber(LS);
|
1996-09-25 14:52:00 -07:00
|
|
|
continue;
|
1995-07-06 10:47:08 -07:00
|
|
|
default:
|
1999-11-22 05:12:07 -08:00
|
|
|
save_and_next(L, LS);
|
1995-07-06 10:47:08 -07:00
|
|
|
}
|
1996-05-30 07:04:07 -07:00
|
|
|
} endloop:
|
1999-11-22 05:12:07 -08:00
|
|
|
save_and_next(L, LS); /* skip the second ']' */
|
2000-05-24 11:04:17 -07:00
|
|
|
LS->t.seminfo.ts = luaS_newlstr(L, L->Mbuffer+(L->Mbuffbase+2),
|
1999-02-25 07:17:01 -08:00
|
|
|
L->Mbuffnext-L->Mbuffbase-4);
|
2000-01-25 10:44:21 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void read_string (lua_State *L, LexState *LS, int del) {
|
|
|
|
save_and_next(L, LS);
|
|
|
|
while (LS->current != del) {
|
|
|
|
switch (LS->current) {
|
|
|
|
case EOZ: case '\n':
|
2000-03-10 10:37:44 -08:00
|
|
|
luaX_error(LS, "unfinished string", TK_STRING);
|
2000-01-25 10:44:21 -08:00
|
|
|
break; /* to avoid warnings */
|
|
|
|
case '\\':
|
|
|
|
next(LS); /* do not save the '\' */
|
|
|
|
switch (LS->current) {
|
|
|
|
case 'a': save(L, '\a'); next(LS); break;
|
|
|
|
case 'b': save(L, '\b'); next(LS); break;
|
|
|
|
case 'f': save(L, '\f'); next(LS); break;
|
|
|
|
case 'n': save(L, '\n'); next(LS); break;
|
|
|
|
case 'r': save(L, '\r'); next(LS); break;
|
|
|
|
case 't': save(L, '\t'); next(LS); break;
|
|
|
|
case 'v': save(L, '\v'); next(LS); break;
|
2000-05-26 07:04:04 -07:00
|
|
|
case '\n': save(L, '\n'); inclinenumber(LS); break;
|
2000-01-25 10:44:21 -08:00
|
|
|
case '0': case '1': case '2': case '3': case '4':
|
|
|
|
case '5': case '6': case '7': case '8': case '9': {
|
|
|
|
int c = 0;
|
|
|
|
int i = 0;
|
|
|
|
do {
|
|
|
|
c = 10*c + (LS->current-'0');
|
|
|
|
next(LS);
|
|
|
|
} while (++i<3 && isdigit(LS->current));
|
|
|
|
if (c != (unsigned char)c)
|
2000-03-10 10:37:44 -08:00
|
|
|
luaX_error(LS, "escape sequence too large", TK_STRING);
|
2000-01-25 10:44:21 -08:00
|
|
|
save(L, c);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default: /* handles \\, \", \', and \? */
|
|
|
|
save(L, LS->current);
|
|
|
|
next(LS);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
save_and_next(L, LS);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
save_and_next(L, LS); /* skip delimiter */
|
2000-05-24 11:04:17 -07:00
|
|
|
LS->t.seminfo.ts = luaS_newlstr(L, L->Mbuffer+(L->Mbuffbase+1),
|
2000-01-25 10:44:21 -08:00
|
|
|
L->Mbuffnext-L->Mbuffbase-2);
|
1995-07-06 10:47:08 -07:00
|
|
|
}
|
|
|
|
|
1997-09-16 12:25:59 -07:00
|
|
|
|
1998-05-27 06:08:34 -07:00
|
|
|
int luaX_lex (LexState *LS) {
|
1999-11-22 05:12:07 -08:00
|
|
|
lua_State *L = LS->L;
|
1998-12-03 07:45:15 -08:00
|
|
|
for (;;) {
|
1997-11-21 11:00:46 -08:00
|
|
|
switch (LS->current) {
|
1993-12-22 13:39:15 -08:00
|
|
|
|
2000-03-03 06:58:26 -08:00
|
|
|
case ' ': case '\t': case '\r': /* `\r' to avoid problems with DOS */
|
1997-11-21 11:00:46 -08:00
|
|
|
next(LS);
|
1996-09-25 14:52:00 -07:00
|
|
|
continue;
|
1994-09-22 05:44:00 -07:00
|
|
|
|
1998-01-09 06:44:55 -08:00
|
|
|
case '\n':
|
2000-05-26 07:04:04 -07:00
|
|
|
inclinenumber(LS);
|
|
|
|
checkpragma(L, LS);
|
1998-01-09 06:44:55 -08:00
|
|
|
continue;
|
|
|
|
|
1993-12-22 13:15:16 -08:00
|
|
|
case '-':
|
2000-01-25 10:44:21 -08:00
|
|
|
next(LS);
|
1997-11-21 11:00:46 -08:00
|
|
|
if (LS->current != '-') return '-';
|
|
|
|
do { next(LS); } while (LS->current != '\n' && LS->current != EOZ);
|
1993-12-22 13:15:16 -08:00
|
|
|
continue;
|
1994-09-22 05:44:00 -07:00
|
|
|
|
1995-07-06 10:47:08 -07:00
|
|
|
case '[':
|
2000-01-26 10:51:49 -08:00
|
|
|
luaL_resetbuffer(L);
|
1999-11-22 05:12:07 -08:00
|
|
|
save_and_next(L, LS);
|
1997-11-21 11:00:46 -08:00
|
|
|
if (LS->current != '[') return '[';
|
1997-09-16 12:25:59 -07:00
|
|
|
else {
|
1999-11-22 05:12:07 -08:00
|
|
|
save_and_next(L, LS); /* pass the second '[' */
|
2000-01-25 10:44:21 -08:00
|
|
|
read_long_string(L, LS);
|
2000-03-10 10:37:44 -08:00
|
|
|
return TK_STRING;
|
1995-07-06 10:47:08 -07:00
|
|
|
}
|
|
|
|
|
1994-09-26 09:21:52 -07:00
|
|
|
case '=':
|
2000-01-25 10:44:21 -08:00
|
|
|
next(LS);
|
1997-11-21 11:00:46 -08:00
|
|
|
if (LS->current != '=') return '=';
|
2000-03-10 10:37:44 -08:00
|
|
|
else { next(LS); return TK_EQ; }
|
1994-09-26 09:21:52 -07:00
|
|
|
|
1993-12-22 13:15:16 -08:00
|
|
|
case '<':
|
2000-01-25 10:44:21 -08:00
|
|
|
next(LS);
|
1997-11-21 11:00:46 -08:00
|
|
|
if (LS->current != '=') return '<';
|
2000-03-10 10:37:44 -08:00
|
|
|
else { next(LS); return TK_LE; }
|
1994-09-22 05:44:00 -07:00
|
|
|
|
1993-12-22 13:15:16 -08:00
|
|
|
case '>':
|
2000-01-25 10:44:21 -08:00
|
|
|
next(LS);
|
1997-11-21 11:00:46 -08:00
|
|
|
if (LS->current != '=') return '>';
|
2000-03-10 10:37:44 -08:00
|
|
|
else { next(LS); return TK_GE; }
|
1994-09-22 05:44:00 -07:00
|
|
|
|
1993-12-22 13:15:16 -08:00
|
|
|
case '~':
|
2000-01-25 10:44:21 -08:00
|
|
|
next(LS);
|
1997-11-21 11:00:46 -08:00
|
|
|
if (LS->current != '=') return '~';
|
2000-03-10 10:37:44 -08:00
|
|
|
else { next(LS); return TK_NE; }
|
1993-12-22 13:15:16 -08:00
|
|
|
|
|
|
|
case '"':
|
2000-01-25 10:44:21 -08:00
|
|
|
case '\'':
|
2000-01-26 10:51:49 -08:00
|
|
|
luaL_resetbuffer(L);
|
2000-01-25 10:44:21 -08:00
|
|
|
read_string(L, LS, LS->current);
|
2000-03-10 10:37:44 -08:00
|
|
|
return TK_STRING;
|
1993-12-22 13:15:16 -08:00
|
|
|
|
|
|
|
case '.':
|
2000-01-26 10:51:49 -08:00
|
|
|
luaL_resetbuffer(L);
|
1999-11-22 05:12:07 -08:00
|
|
|
save_and_next(L, LS);
|
2000-01-25 10:44:21 -08:00
|
|
|
if (LS->current == '.') {
|
|
|
|
next(LS);
|
|
|
|
if (LS->current == '.') {
|
|
|
|
next(LS);
|
2000-03-10 10:37:44 -08:00
|
|
|
return TK_DOTS; /* ... */
|
1996-05-28 14:07:32 -07:00
|
|
|
}
|
2000-04-07 06:11:49 -07:00
|
|
|
else return TK_CONCAT; /* .. */
|
1993-12-22 13:15:16 -08:00
|
|
|
}
|
1997-11-21 11:00:46 -08:00
|
|
|
else if (!isdigit(LS->current)) return '.';
|
2000-01-26 10:51:49 -08:00
|
|
|
else goto fraction; /* LS->current is a digit */
|
1993-12-22 13:15:16 -08:00
|
|
|
|
|
|
|
case '0': case '1': case '2': case '3': case '4':
|
|
|
|
case '5': case '6': case '7': case '8': case '9':
|
2000-01-26 10:51:49 -08:00
|
|
|
luaL_resetbuffer(L);
|
1996-05-30 07:04:07 -07:00
|
|
|
do {
|
1999-11-22 05:12:07 -08:00
|
|
|
save_and_next(L, LS);
|
1997-11-21 11:00:46 -08:00
|
|
|
} while (isdigit(LS->current));
|
|
|
|
if (LS->current == '.') {
|
1999-11-22 05:12:07 -08:00
|
|
|
save_and_next(L, LS);
|
1997-11-21 11:00:46 -08:00
|
|
|
if (LS->current == '.') {
|
1999-11-22 05:12:07 -08:00
|
|
|
save(L, '.');
|
2000-01-25 10:44:21 -08:00
|
|
|
luaX_error(LS, "ambiguous syntax"
|
2000-03-10 10:37:44 -08:00
|
|
|
" (decimal point x string concatenation)", TK_NUMBER);
|
1997-09-16 12:25:59 -07:00
|
|
|
}
|
1996-11-08 04:49:35 -08:00
|
|
|
}
|
1999-07-22 12:29:42 -07:00
|
|
|
fraction: /* LUA_NUMBER */
|
1998-12-27 12:25:20 -08:00
|
|
|
while (isdigit(LS->current))
|
1999-11-22 05:12:07 -08:00
|
|
|
save_and_next(L, LS);
|
2000-01-25 10:44:21 -08:00
|
|
|
if (LS->current == 'e' || LS->current == 'E') {
|
1999-11-22 05:12:07 -08:00
|
|
|
save_and_next(L, LS); /* read 'E' */
|
1999-12-22 08:58:36 -08:00
|
|
|
if (LS->current == '+' || LS->current == '-')
|
1999-12-30 04:40:29 -08:00
|
|
|
save_and_next(L, LS); /* optional exponent sign */
|
1998-12-27 12:25:20 -08:00
|
|
|
while (isdigit(LS->current))
|
1999-11-22 05:12:07 -08:00
|
|
|
save_and_next(L, LS);
|
1993-12-22 13:15:16 -08:00
|
|
|
}
|
1999-11-22 05:12:07 -08:00
|
|
|
save(L, '\0');
|
2000-05-24 11:04:17 -07:00
|
|
|
if (!luaO_str2d(L->Mbuffer+L->Mbuffbase, &LS->t.seminfo.r))
|
2000-03-10 10:37:44 -08:00
|
|
|
luaX_error(LS, "malformed number", TK_NUMBER);
|
|
|
|
return TK_NUMBER;
|
1994-11-13 06:39:04 -08:00
|
|
|
|
1997-06-16 09:50:22 -07:00
|
|
|
case EOZ:
|
2000-03-10 10:37:44 -08:00
|
|
|
return TK_EOS;
|
1997-04-01 13:23:20 -08:00
|
|
|
|
2000-01-25 10:44:21 -08:00
|
|
|
case '_': goto tname;
|
|
|
|
|
1997-04-01 13:23:20 -08:00
|
|
|
default:
|
2000-01-25 10:44:21 -08:00
|
|
|
if (!isalpha(LS->current)) {
|
1997-12-17 12:48:58 -08:00
|
|
|
int c = LS->current;
|
1998-05-27 06:08:34 -07:00
|
|
|
if (iscntrl(c))
|
|
|
|
luaX_invalidchar(LS, c);
|
2000-01-25 10:44:21 -08:00
|
|
|
next(LS);
|
1997-12-17 12:48:58 -08:00
|
|
|
return c;
|
1997-07-01 12:32:41 -07:00
|
|
|
}
|
2000-01-25 10:44:21 -08:00
|
|
|
tname: { /* identifier or reserved word */
|
2000-05-26 07:04:04 -07:00
|
|
|
TString *ts = luaS_new(L, readname(L, LS));
|
1999-10-11 09:13:42 -07:00
|
|
|
if (ts->marked >= RESERVEDMARK) /* reserved word? */
|
|
|
|
return ts->marked-RESERVEDMARK+FIRST_RESERVED;
|
2000-05-24 11:04:17 -07:00
|
|
|
LS->t.seminfo.ts = ts;
|
2000-03-10 10:37:44 -08:00
|
|
|
return TK_NAME;
|
1997-07-01 12:32:41 -07:00
|
|
|
}
|
1993-12-22 13:15:16 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
1996-05-30 07:04:07 -07:00
|
|
|
|