| 65 | }; |
| 66 | |
| 67 | TypeAnnotation * TypeInfo::getAnnotation() const { |
| 68 | if ( type != Type::tHandle ) { |
| 69 | return nullptr; |
| 70 | } |
| 71 | return Module::resolveAnnotation(this); |
| 72 | } |
| 73 | |
| 74 | StructInfo * TypeInfo::getStructType() const { |
| 75 | if ( type != Type::tStructure ) { |
no outgoing calls
no test coverage detected