comparison dmd/DeleteDeclaration.d @ 0:10317f0c89a5

Initial commit
author korDen
date Sat, 24 Oct 2009 08:42:06 +0400
parents
children 2e2a5c3f943a
comparison
equal deleted inserted replaced
-1:000000000000 0:10317f0c89a5
1 module dmd.DeleteDeclaration;
2
3 import dmd.FuncDeclaration;
4 import dmd.ArrayTypes;
5 import dmd.Loc;
6 import dmd.Dsymbol;
7 import dmd.Scope;
8 import dmd.OutBuffer;
9 import dmd.HdrGenState;
10 import dmd.STC;
11
12 class DeleteDeclaration : FuncDeclaration
13 {
14 Arguments arguments;
15
16 this(Loc loc, Loc endloc, Arguments arguments)
17 {
18 assert(false);
19 super(loc, endloc, null, STC.init, null);
20 }
21
22 Dsymbol syntaxCopy(Dsymbol)
23 {
24 assert(false);
25 }
26
27 void semantic(Scope sc)
28 {
29 assert(false);
30 }
31
32 void toCBuffer(OutBuffer buf, HdrGenState* hgs)
33 {
34 assert(false);
35 }
36
37 string kind()
38 {
39 assert(false);
40 }
41
42 bool isDelete()
43 {
44 assert(false);
45 }
46
47 bool isVirtual()
48 {
49 assert(false);
50 }
51
52 bool addPreInvariant()
53 {
54 assert(false);
55 }
56
57 bool addPostInvariant()
58 {
59 assert(false);
60 }
61
62 version (_DH) {
63 DeleteDeclaration isDeleteDeclaration() { return this; }
64 }
65 }