comparison dmd/Declaration.d @ 179:cd48cb899aee

Updated to dmd2.040
author korDen
date Sun, 17 Oct 2010 20:56:07 +0400
parents e3afd1303184
children 190ba98276b3
comparison
equal deleted inserted replaced
178:e3afd1303184 179:cd48cb899aee
272 return p; 272 return p;
273 } 273 }
274 274
275 bool isStatic() { return (storage_class & STC.STCstatic) != 0; } 275 bool isStatic() { return (storage_class & STC.STCstatic) != 0; }
276 276
277 bool isStaticConstructor()
278 {
279 return false;
280 }
281
282 bool isStaticDestructor()
283 {
284 return false;
285 }
286
287 bool isDelete() 277 bool isDelete()
288 { 278 {
289 return false; 279 return false;
290 } 280 }
291 281