comparison dmd2/hdrgen.h @ 758:f04dde6e882c

Added initial D2 support, D2 frontend and changes to codegen to make things compile.
author Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
date Tue, 11 Nov 2008 01:38:48 +0100
parents
children
comparison
equal deleted inserted replaced
757:2c730d530c98 758:f04dde6e882c
1
2 // Compiler implementation of the D programming language
3 // Copyright (c) 1999-2006 by Digital Mars
4 // All Rights Reserved
5 // initial header generation implementation by Dave Fladebo
6 // http://www.digitalmars.com
7 // License for redistribution is by either the Artistic License
8 // in artistic.txt, or the GNU General Public License in gnu.txt.
9 // See the included readme.txt for details.
10
11
12 struct HdrGenState
13 {
14 int hdrgen; // 1 if generating header file
15 int ddoc; // 1 if generating Ddoc file
16 int console; // 1 if writing to console
17 int tpltMember;
18 int inCallExp;
19 int inPtrExp;
20 int inSlcExp;
21 int inDotExp;
22 int inBinExp;
23 int inArrExp;
24 int emitInst;
25 struct
26 {
27 int init;
28 int decl;
29 } FLinit;
30
31 HdrGenState() { memset(this, 0, sizeof(HdrGenState)); }
32 };
33
34