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.
66
1999/
09
/
18
09
:
21
:
22
hubbe Exp $");
+
RCSID("$Id: lex.c,v 1.
67
1999/
11
/
30
07
:
50
:
17
hubbe 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:187:
{ "pop_n_elems", F_POP_N_ELEMS, I_HASARG }, { "push UNDEFINED", F_UNDEFINED,0 }, { "push 0", F_CONST0,0 }, { "push 1", F_CONST1,0 }, { "push 0x7fffffff", F_BIGNUM,0 }, { "range", F_RANGE,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 },
{ "sscanf", F_SSCANF, I_HASARG }, { "string", F_STRING, I_HASARG }, { "switch", F_SWITCH, I_HASARG }, { "unary minus", F_NEGATE,0 }, { "while", F_WHILE,0 }, { "x++ and pop", F_INC_AND_POP,0 }, { "x++", F_POST_INC,0 }, { "x-- and pop", F_DEC_AND_POP,0 }, { "x--", F_POST_DEC,0 }, { "|", F_OR,0 },