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.
56
1998/
10
/
09
17
:
56
:
32
hubbe Exp $");
+
RCSID("$Id: lex.c,v 1.
57
1998/
11
/
16
22
:
14
:
53
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:169:
{ "& external", F_EXTERNAL_LVALUE, I_HASARG }, { "LDA", F_LDA, I_HASARG }, { "mark & local", F_MARK_AND_LOCAL, I_HASARG }, { "ltosval2", F_LTOSVAL2 }, { "lvalue to svalue", F_LTOSVAL }, { "lvalue_list", F_LVALUE_LIST }, { "[ lvalues ]", F_ARRAY_LVALUE, I_HASARG }, { "mark sp-X", F_MARK_X, I_HASARG }, { "mark", F_MARK }, { "mark mark", F_MARK2 },
+
{ "pop mark", F_POP_MARK },
{ "negative number", F_NEG_NUMBER, I_HASARG }, { "number", F_NUMBER, I_HASARG }, { "pop", F_POP_VALUE }, { "pop_n_elems", F_POP_N_ELEMS, I_HASARG }, { "push 0", F_CONST0 }, { "push 1", F_CONST1 }, { "push 0x7fffffff", F_BIGNUM }, { "range", F_RANGE }, { "return", F_RETURN }, { "return 0", F_RETURN_0 },