comparison dmd/WithScopeSymbol.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.WithScopeSymbol;
2
3 import dmd.ScopeDsymbol;
4 import dmd.WithStatement;
5 import dmd.Loc;
6 import dmd.Identifier;
7 import dmd.Dsymbol;
8
9 class WithScopeSymbol : ScopeDsymbol
10 {
11 WithStatement withstate;
12
13 this(WithStatement withstate)
14 {
15 assert(false);
16 }
17
18 Dsymbol search(Loc loc, Identifier ident, int flags)
19 {
20 assert(false);
21 }
22
23 WithScopeSymbol isWithScopeSymbol() { return this; }
24 }