comparison dmd/DotTemplateInstanceExp.d @ 0:10317f0c89a5

Initial commit
author korDen
date Sat, 24 Oct 2009 08:42:06 +0400
parents
children 7427ded8caf7
comparison
equal deleted inserted replaced
-1:000000000000 0:10317f0c89a5
1 module dmd.DotTemplateInstanceExp;
2
3 import dmd.Expression;
4 import dmd.UnaExp;
5 import dmd.OutBuffer;
6 import dmd.Loc;
7 import dmd.Scope;
8 import dmd.TemplateInstance;
9 import dmd.HdrGenState;
10 import dmd.TOK;
11
12 class DotTemplateInstanceExp : UnaExp
13 {
14 TemplateInstance ti;
15
16 this(Loc loc, Expression e, TemplateInstance ti)
17 {
18 assert(false);
19 super(loc, TOK.init, 0, e);
20 }
21
22 Expression syntaxCopy()
23 {
24 assert(false);
25 }
26
27 Expression semantic(Scope sc)
28 {
29 assert(false);
30 }
31
32 void toCBuffer(OutBuffer buf, HdrGenState* hgs)
33 {
34 assert(false);
35 }
36
37 void dump(int indent)
38 {
39 assert(false);
40 }
41 }
42