pike.git
/
src
/
lex.c
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/src/lex.c:1:
/*\ ||| This file a part of Pike, and is copyright by Fredrik Hubinette ||| Pike is distributed as GPL (General Public License) ||| See the files COPYING and DISCLAIMER for more information. \*/ /**/ #include "global.h"
-
RCSID("$Id: lex.c,v 1.
93
2001/07/
06
22
:
56
:
57
grubba Exp $");
+
RCSID("$Id: lex.c,v 1.
94
2001/07/
08
19
:
35
:
38
grubba Exp $");
#include "language.h" #include "array.h" #include "lex.h" #include "stralloc.h" #include "dynamic_buffer.h" #include "constants.h" #include "hashtable.h" #include "stuff.h" #include "pike_memory.h" #include "interpret.h"
pike.git/src/lex.c:194:
{ "break", F_BREAK,0 }, { "case", F_CASE,0 }, { "continue", F_CONTINUE,0 }, { "default", F_DEFAULT,0 }, { "do-while", F_DO,0 }, { "dumb return", F_DUMB_RETURN,0 }, { "for", F_FOR,0 }, { "index", F_INDEX,0 },
-
{ "foreach", F_FOREACH, I_ISJUMP },
-
{ "foreach++", F_NEW_FOREACH, I_ISJUMP },
+
{ "pointer", F_POINTER, I_ISPOINTER }, { "data", F_DATA, I_DATA }, { "byte", F_BYTE, I_DATA }, { "lvalue_list", F_LVALUE_LIST,0 }, { "return", F_RETURN,0 }, { "return 0", F_RETURN_0,0 }, { "return 1", F_RETURN_1,0 }, { "return local", F_RETURN_LOCAL, I_HASARG }, { "return if true", F_RETURN_IF_TRUE, 0 },