comparison gen/todt.c @ 52:0c77619e803b trunk

[svn r56] Initial support for TypeInfo. Enums not work. Several other bugfixes.
author lindquist
date Tue, 23 Oct 2007 05:55:12 +0200
parents c53b6e3fe49a
children
comparison
equal deleted inserted replaced
51:61bc1b4ad3c4 52:0c77619e803b
114 114
115 void StructDeclaration::toDt(dt_t **pdt) 115 void StructDeclaration::toDt(dt_t **pdt)
116 { 116 {
117 } 117 }
118 118
119
120 void TypeInfoPointerDeclaration::toDt(dt_t **pdt)
121 {
122 }
123 void TypeInfoArrayDeclaration::toDt(dt_t **pdt)
124 {
125 }
126 void TypeInfoStaticArrayDeclaration::toDt(dt_t **pdt)
127 {
128 }
129 void TypeInfoAssociativeArrayDeclaration::toDt(dt_t **pdt)
130 {
131 }
132 void TypeInfoEnumDeclaration::toDt(dt_t **pdt)
133 {
134 }
135 void TypeInfoFunctionDeclaration::toDt(dt_t **pdt)
136 {
137 }
138 void TypeInfoDelegateDeclaration::toDt(dt_t **pdt)
139 {
140 }
141 void TypeInfoInterfaceDeclaration::toDt(dt_t **pdt)
142 {
143 }
144 void TypeInfoTupleDeclaration::toDt(dt_t **pdt)
145 {
146 }
147
148
149 dt_t **Type::toDt(dt_t **pdt) 119 dt_t **Type::toDt(dt_t **pdt)
150 { 120 {
151 return 0; 121 return 0;
152 } 122 }
153 123