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.
165
2003/09/19
13
:
51
:
57
grubba Exp $
+
|| $Id: docode.c,v 1.
166
2003/09/19
14
:
04
:
48
grubba Exp $
*/ #include "global.h"
-
RCSID("$Id: docode.c,v 1.
165
2003/09/19
13
:
51
:
57
grubba Exp $");
+
RCSID("$Id: docode.c,v 1.
166
2003/09/19
14
:
04
:
48
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:2218:
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), (INT16)(flags | DO_LVALUE));
+
ret
=
do_docode(CAR(n),flags)
;
+
return
ret
+
do_docode(CDR(n), (INT16)(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");