diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2000-04-12 15:57:19 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2000-04-12 15:57:19 -0300 |
commit | f9cf402fbd1ba2ab00f5aa5f7d0ff5c9c0580dd5 (patch) | |
tree | 7bed49a7ff5c730cdfdef7c3a43b71e039d4442b /llex.c | |
parent | 0c3fe2c44be155b11b52230e36f45e688bae5ce2 (diff) | |
download | lua-f9cf402fbd1ba2ab00f5aa5f7d0ff5c9c0580dd5.tar.gz lua-f9cf402fbd1ba2ab00f5aa5f7d0ff5c9c0580dd5.tar.bz2 lua-f9cf402fbd1ba2ab00f5aa5f7d0ff5c9c0580dd5.zip |
first implementation of FOR
Diffstat (limited to 'llex.c')
-rw-r--r-- | llex.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: llex.c,v 1.55 2000/04/05 17:51:58 roberto Exp roberto $ | 2 | ** $Id: llex.c,v 1.56 2000/04/07 13:11:49 roberto Exp roberto $ |
3 | ** Lexical Analyzer | 3 | ** Lexical Analyzer |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -32,7 +32,7 @@ | |||
32 | 32 | ||
33 | /* ORDER RESERVED */ | 33 | /* ORDER RESERVED */ |
34 | static const char *const token2string [] = { | 34 | static const char *const token2string [] = { |
35 | "and", "break", "do", "else", "elseif", "end", | 35 | "and", "break", "do", "else", "elseif", "end", "for", |
36 | "function", "if", "local", "nil", "not", "or", "repeat", "return", "then", | 36 | "function", "if", "local", "nil", "not", "or", "repeat", "return", "then", |
37 | "until", "while", "", "..", "...", "==", ">=", "<=", "~=", "", "", "<eof>"}; | 37 | "until", "while", "", "..", "...", "==", ">=", "<=", "~=", "", "", "<eof>"}; |
38 | 38 | ||