comparison dmd2/version.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 // written by Walter Bright
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 #ifndef DMD_VERSION_H
12 #define DMD_VERSION_H
13
14 #ifdef __DMC__
15 #pragma once
16 #endif /* __DMC__ */
17
18 #include "dsymbol.h"
19
20 struct OutBuffer;
21 struct HdrGenState;
22
23 struct DebugSymbol : Dsymbol
24 {
25 unsigned level;
26
27 DebugSymbol(Loc loc, Identifier *ident);
28 DebugSymbol(Loc loc, unsigned level);
29 Dsymbol *syntaxCopy(Dsymbol *);
30
31 int addMember(Scope *sc, ScopeDsymbol *s, int memnum);
32 void semantic(Scope *sc);
33 void toCBuffer(OutBuffer *buf, HdrGenState *hgs);
34 const char *kind();
35 };
36
37 struct VersionSymbol : Dsymbol
38 {
39 unsigned level;
40
41 VersionSymbol(Loc loc, Identifier *ident);
42 VersionSymbol(Loc loc, unsigned level);
43 Dsymbol *syntaxCopy(Dsymbol *);
44
45 int addMember(Scope *sc, ScopeDsymbol *s, int memnum);
46 void semantic(Scope *sc);
47 void toCBuffer(OutBuffer *buf, HdrGenState *hgs);
48 const char *kind();
49 };
50
51 #endif /* DMD_VERSION_H */