comparison dmd/TypeInfoFunctionDeclaration.d @ 73:ef02e2e203c2

Updating to dmd2.033
author korDen
date Sat, 28 Aug 2010 19:42:41 +0400
parents
children 43073c7c7769
comparison
equal deleted inserted replaced
72:2e2a5c3f943a 73:ef02e2e203c2
1 module dmd.TypeInfoFunctionDeclaration;
2
3 import dmd.Type;
4 import dmd.TypeInfoDeclaration;
5 import dmd.backend.dt_t;
6
7 class TypeInfoFunctionDeclaration : TypeInfoDeclaration
8 {
9 this(Type tinfo)
10 {
11 super(tinfo, 0);
12 type = Type.typeinfofunction.type;
13 }
14
15 void toDt(dt_t** pdt)
16 {
17 assert(false);
18 }
19 }
20