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.
16
1997/03/
08
12
:
54
:
06
hubbe Exp $");
+
RCSID("$Id: lex.c,v 1.
17
1997/03/
09
09
:
11
:
12
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 "memory.h" #include "interpret.h"
pike.git/src/lex.c:265:
{ "sizeof", F_SIZEOF }, { "sizeof local", F_SIZEOF_LOCAL, 1 }, { "throw(0)", F_THROW_ZERO }, { "string index", F_STRING_INDEX, 1 }, { "local index", F_LOCAL_INDEX, 1 }, { "int index", F_POS_INT_INDEX, 1 }, { "-int index", F_NEG_INT_INDEX, 1 }, { "apply and pop", F_APPLY_AND_POP, 1 }, { "2 locals", F_2_LOCALS, 1 }, { "byte", F_BYTE, 1 },
+
{ "nop", F_NOP },
+
{ "==||", F_EQ_OR, 1 },
}; struct instr instrs[F_MAX_INSTR - F_OFFSET]; struct reserved { struct hash_entry link; int token; };