comparison dmd/PeelStatement.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.PeelStatement;
2
3 import dmd.Statement;
4 import dmd.Scope;
5 import dmd.Loc;
6
7 class PeelStatement : Statement
8 {
9 Statement s;
10
11 this(Statement s)
12 {
13 assert(false);
14 super(Loc(0));
15 }
16
17 Statement semantic(Scope sc)
18 {
19 assert(false);
20 }
21 }
22