pike.git
/
src
/
docode.c
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/src/docode.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: docode.c,v 1.
56
1999/11/23
03
:
06
:
56
grubba Exp $");
+
RCSID("$Id: docode.c,v 1.
57
1999/11/23
22
:
37
:
14
grubba Exp $");
#include "las.h" #include "program.h" #include "language.h" #include "pike_types.h" #include "stralloc.h" #include "interpret.h" #include "constants.h" #include "array.h" #include "pike_macros.h" #include "error.h"
pike.git/src/docode.c:699:
emit(F_STRING,tmp1); tmp1=do_docode(CAR(n),0); if(!tmp1) { emit2(F_CONST0); tmp1=1; } if(tmp1>1) do_pop(tmp1-1); emit2(F_CAST); return 1; case F_SOFT_CAST:
-
return do_docode(CAR(n),
0
);
+
return do_docode(CAR(n),
flags
);
case F_APPLY: if(CAR(n)->token == F_CONSTANT) { if(CAR(n)->u.sval.type == T_FUNCTION) { if(CAR(n)->u.sval.subtype == FUNCTION_BUILTIN) /* driver fun? */ { if(!CAR(n)->u.sval.u.efun->docode || !CAR(n)->u.sval.u.efun->docode(n))