pike.git/
src/
language.yacc
Branch:
Tag:
Non-build tags
All tags
No tags
1997-03-01
1997-03-01 17:56:29 by Henrik Grubbström (Grubba) <grubba@grubba.org>
94a297d2aa09ac865037276f91e452f7a7100d96 (
6
lines) (+
5
/-
1
)
[
Show
|
Annotate
]
Branch:
7.9
Nicer to pure
Rev: src/language.yacc:1.27
Rev: src/program.c:1.24
156:
/* This is the grammar definition of Pike. */ #include "global.h"
-
RCSID("$Id: language.yacc,v 1.
26
1997/03/01
02
:
37
:
01
hubbe
Exp $");
+
RCSID("$Id: language.yacc,v 1.
27
1997/03/01
17
:
56
:
04
grubba
Exp $");
#ifdef HAVE_MEMORY_H #include <memory.h> #endif
1182:
struct svalue tmp; node *tmp2; tmp.type=T_MAPPING;
+
#ifdef __CHECKER__
+
tmp.subtype=0;
+
#endif /* __CHECKER__ */
tmp.u.mapping=get_builtin_constants(); tmp2=mkconstantsvaluenode(&tmp); $$=index_node(tmp2, $3);