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.
64
1999/
03
/
11
13
:
44
:
32
hubbe Exp $");
+
RCSID("$Id: lex.c,v 1.
65
1999/
08/
03
00
:
45
:
13
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:178:
{ "lvalue_list", F_LVALUE_LIST }, { "[ lvalues ]", F_ARRAY_LVALUE, I_HASARG }, { "mark sp-X", F_MARK_X, I_HASARG }, { "mark", F_MARK,0 }, { "mark mark", F_MARK2,0 }, { "pop mark", F_POP_MARK,0 }, { "negative number", F_NEG_NUMBER, I_HASARG }, { "number", F_NUMBER, I_HASARG }, { "pop", F_POP_VALUE,0 }, { "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 }, { "sscanf", F_SSCANF, I_HASARG }, { "string", F_STRING, I_HASARG },