comparison dmd/FuncDeclaration.d @ 68:ee3a9f34dc48

final bits of codegen implementation to compile Phobos
author korDen
date Tue, 24 Aug 2010 16:44:34 +0400
parents cab4c37afb89
children 2e2a5c3f943a
comparison
equal deleted inserted replaced
67:f708f0452e81 68:ee3a9f34dc48
2064 return (storage_class & STC.STCabstract) != 0; 2064 return (storage_class & STC.STCabstract) != 0;
2065 } 2065 }
2066 2066
2067 bool isCodeseg() 2067 bool isCodeseg()
2068 { 2068 {
2069 assert(false); 2069 return true; // functions are always in the code segment
2070 } 2070 }
2071 2071
2072 bool isOverloadable() 2072 bool isOverloadable()
2073 { 2073 {
2074 return 1; // functions can be overloaded 2074 return 1; // functions can be overloaded