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.
63
1999/
02
/
20
17
:
47
:
02
grubba
Exp $");
+
RCSID("$Id: lex.c,v 1.
64
1999/
03
/
11
13
:
44
:
32
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:239:
{ "apply & assign local", F_APPLY_ASSIGN_LOCAL, I_HASARG }, { "call lfun & return", F_CALL_LFUN_AND_RETURN, I_HASARG }, { "call function", F_CALL_FUNCTION, 0 }, { "call function & return", F_CALL_FUNCTION_AND_RETURN, 0 }, { "+= and pop", F_ADD_TO_AND_POP, 0 }, { "local=local;", F_LOCAL_2_LOCAL, I_HASARG }, { "local=global;", F_GLOBAL_2_LOCAL, I_HASARG }, { "global=local;", F_LOCAL_2_GLOBAL, I_HASARG }, { "local->x", F_LOCAL_ARROW, I_HASARG }, { "global[local]", F_GLOBAL_LOCAL_INDEX, I_HASARG },
+
{ "::`[]", F_MAGIC_INDEX, I_HASARG },
+
{ "::`[]=", F_MAGIC_SET_INDEX, I_HASARG },
}; struct instr instrs[F_MAX_INSTR - F_OFFSET]; struct reserved { struct hash_entry link; int token; };