pike.git
/
src
/
docode.c
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/src/docode.c:1:
/* || This file is part of Pike. For copyright information see COPYRIGHT. || Pike is distributed under GPL, LGPL and MPL. See the file COPYING || for more information.
-
|| $Id: docode.c,v 1.
167
2003/09/
05
15
:
53
:
38
grubba Exp $
+
|| $Id: docode.c,v 1.
168
2003/09/
19
13
:
08
:
07
grubba Exp $
*/ #include "global.h"
-
RCSID("$Id: docode.c,v 1.
167
2003/09/
05
15
:
53
:
38
grubba Exp $");
+
RCSID("$Id: docode.c,v 1.
168
2003/09/
19
13
:
08
:
07
grubba Exp $");
#include "las.h" #include "program.h" #include "pike_types.h" #include "stralloc.h" #include "interpret.h" #include "constants.h" #include "array.h" #include "pike_macros.h" #include "pike_error.h" #include "pike_memory.h"
pike.git/src/docode.c:2230:
emit1(F_GLOBAL_LVALUE,n->u.id.number); return 2; }else{ emit1(F_GLOBAL,n->u.id.number); } } return 1; } case F_VAL_LVAL:
-
return
do_docode(CAR(n),flags)
+
-
do_docode(CDR(n), flags | DO_LVALUE);
+
{
+
int res =
do_docode(CAR(n),flags)
;
+
return res +
do_docode(CDR(n), flags | DO_LVALUE);
+
}
case F_AUTO_MAP: emit0(F_MARK); code_expression(CAR(n), 0, "automap function"); do_encode_automap_arg_list(CDR(n),0); emit_apply_builtin("__automap__"); return 1; case F_AUTO_MAP_MARKER: yyerror("[*] not supported here.\n");