comparison dmd/CompileDeclaration.d @ 0:10317f0c89a5

Initial commit
author korDen
date Sat, 24 Oct 2009 08:42:06 +0400
parents
children 427f8aa74d28 f2413c9183d1
comparison
equal deleted inserted replaced
-1:000000000000 0:10317f0c89a5
1 module dmd.CompileDeclaration;
2
3 import dmd.AttribDeclaration;
4 import dmd.Expression;
5 import dmd.ScopeDsymbol;
6 import dmd.Dsymbol;
7 import dmd.Loc;
8 import dmd.Scope;
9 import dmd.OutBuffer;
10 import dmd.HdrGenState;
11
12 // Mixin declarations
13
14 class CompileDeclaration : AttribDeclaration
15 {
16 Expression exp;
17
18 ScopeDsymbol *sd;
19 int compiled;
20
21 this(Loc loc, Expression exp)
22 {
23 assert(false);
24 super(null);
25 }
26
27 Dsymbol syntaxCopy(Dsymbol s)
28 {
29 assert(false);
30 }
31
32 bool addMember(Scope sc, ScopeDsymbol sd, int memnum)
33 {
34 assert(false);
35 }
36
37 void compileIt(Scope sc)
38 {
39 assert(false);
40 }
41
42 void semantic(Scope sc)
43 {
44 assert(false);
45 }
46
47 void toCBuffer(OutBuffer buf, HdrGenState* hgs)
48 {
49 assert(false);
50 }
51 }