comparison dmd/SwitchErrorStatement.d @ 0:10317f0c89a5

Initial commit
author korDen
date Sat, 24 Oct 2009 08:42:06 +0400
parents
children 63623152e82a
comparison
equal deleted inserted replaced
-1:000000000000 0:10317f0c89a5
1 module dmd.SwitchErrorStatement;
2
3 import dmd.Statement;
4 import dmd.OutBuffer;
5 import dmd.Loc;
6 import dmd.IRState;
7 import dmd.HdrGenState;
8 import dmd.BE;
9
10 class SwitchErrorStatement : Statement
11 {
12 this(Loc loc)
13 {
14 assert(false);
15 super(loc);
16 }
17
18 BE blockExit()
19 {
20 assert(false);
21 }
22
23 void toCBuffer(OutBuffer buf, HdrGenState* hgs)
24 {
25 assert(false);
26 }
27
28 void toIR(IRState* irs)
29 {
30 assert(false);
31 }
32 }
33