| 48 | #endif |
| 49 | |
| 50 | TypeDeclPtr makeHandleType(const ModuleLibrary & library, const char * typeName) { |
| 51 | return library.makeHandleType(typeName); |
| 52 | } |
| 53 | |
| 54 | Annotation * TypeDecl::isPointerToAnnotation() const { |
| 55 | if ( baseType!=Type::tPointer || !firstType || firstType->baseType!=Type::tHandle ) { |
no test coverage detected