diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1999-07-22 16:29:42 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1999-07-22 16:29:42 -0300 |
commit | e9a670695a764408aae2bd970ded7a58d98921c4 (patch) | |
tree | 4e6b456f909090fced8aad436b6491601a85bfca /llex.h | |
parent | 16024861bd23ac9f837f956fbeec739878e5d895 (diff) | |
download | lua-github-e9a670695a764408aae2bd970ded7a58d98921c4.tar.gz |
details
Diffstat (limited to 'llex.h')
-rw-r--r-- | llex.h | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -1,5 +1,5 @@ /* -** $Id: llex.h,v 1.11 1999/02/25 19:13:56 roberto Exp roberto $ +** $Id: llex.h,v 1.12 1999/06/17 17:04:03 roberto Exp roberto $ ** Lexical Analyzer ** See Copyright Notice in lua.h */ @@ -16,6 +16,11 @@ /* maximum length of a reserved word (+1 for terminal 0) */ #define TOKEN_LEN 15 + +/* +* WARNING: if you change the order of this enumeration, +* grep "ORDER RESERVED" +*/ enum RESERVED { /* terminal symbols denoted by reserved words */ AND = FIRST_RESERVED, |