summaryrefslogtreecommitdiff
path: root/llex.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2011-06-20 13:52:48 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2011-06-20 13:52:48 -0300
commit719c01359f797e3933a7a69b541d7e57e149d061 (patch)
tree871c306cafaf033a99de4a31ce2f8bdeea1b9c7d /llex.h
parent43f13729a24f187c291135aa60cdeb9d9be89251 (diff)
downloadlua-719c01359f797e3933a7a69b541d7e57e149d061.tar.gz
lua-719c01359f797e3933a7a69b541d7e57e149d061.tar.bz2
lua-719c01359f797e3933a7a69b541d7e57e149d061.zip
label syntax changed to '::label::'
Diffstat (limited to 'llex.h')
-rw-r--r--llex.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/llex.h b/llex.h
index 8d2a4d80..2c1ab559 100644
--- a/llex.h
+++ b/llex.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: llex.h,v 1.69 2011/02/23 13:13:10 roberto Exp roberto $ 2** $Id: llex.h,v 1.70 2011/05/03 15:51:16 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*/
@@ -26,7 +26,7 @@ enum RESERVED {
26 TK_GOTO, TK_IF, TK_IN, TK_LOCAL, TK_NIL, TK_NOT, TK_OR, TK_REPEAT, 26 TK_GOTO, TK_IF, TK_IN, TK_LOCAL, TK_NIL, TK_NOT, TK_OR, TK_REPEAT,
27 TK_RETURN, TK_THEN, TK_TRUE, TK_UNTIL, TK_WHILE, 27 TK_RETURN, TK_THEN, TK_TRUE, TK_UNTIL, TK_WHILE,
28 /* other terminal symbols */ 28 /* other terminal symbols */
29 TK_CONCAT, TK_DOTS, TK_EQ, TK_GE, TK_LE, TK_NE, TK_EOS, 29 TK_CONCAT, TK_DOTS, TK_EQ, TK_GE, TK_LE, TK_NE, TK_DBCOLON, TK_EOS,
30 TK_NUMBER, TK_NAME, TK_STRING 30 TK_NUMBER, TK_NAME, TK_STRING
31}; 31};
32 32