diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2001-12-11 20:48:44 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2001-12-11 20:48:44 -0200 |
commit | 9aff171f3bf0125314a29a5ca952470b2d83708e (patch) | |
tree | 8d1b400e0108198bde554a31731c655113bc4086 /llex.c | |
parent | ed9be5e1f0d4b68aa848f85744ad959d7a57c9f4 (diff) | |
download | lua-9aff171f3bf0125314a29a5ca952470b2d83708e.tar.gz lua-9aff171f3bf0125314a29a5ca952470b2d83708e.tar.bz2 lua-9aff171f3bf0125314a29a5ca952470b2d83708e.zip |
new type `boolean'
Diffstat (limited to 'llex.c')
-rw-r--r-- | llex.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: llex.c,v 1.92 2001/11/16 16:29:10 roberto Exp $ | 2 | ** $Id: llex.c,v 1.1 2001/11/29 22:14:34 rieru Exp rieru $ |
3 | ** Lexical Analyzer | 3 | ** Lexical Analyzer |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -27,9 +27,9 @@ | |||
27 | /* ORDER RESERVED */ | 27 | /* ORDER RESERVED */ |
28 | static const char *const token2string [] = { | 28 | static const char *const token2string [] = { |
29 | "and", "break", "do", "else", "elseif", | 29 | "and", "break", "do", "else", "elseif", |
30 | "end", "for", "function", "global", "if", | 30 | "end", "false", "for", "function", "global", "if", |
31 | "in", "local", "nil", "not", "or", "repeat", | 31 | "in", "local", "nil", "not", "or", "repeat", |
32 | "return", "then", "until", "while", "", | 32 | "return", "then", "true", "until", "while", "", |
33 | "..", "...", "==", ">=", "<=", "~=", | 33 | "..", "...", "==", ">=", "<=", "~=", |
34 | "", "", "<eof>" | 34 | "", "", "<eof>" |
35 | }; | 35 | }; |