| 721 | |
| 722 | |
| 723 | TypeDeclPtr makeStructInfoFlags() { |
| 724 | auto ft = new TypeDecl(Type::tBitfield); |
| 725 | ft->alias = "StructInfoFlags"; |
| 726 | ft->argNames = { "_class", "_lambda", "heapGC", "stringHeapGC" }; |
| 727 | return ft; |
| 728 | } |
| 729 | |
| 730 | struct StructInfoAnnotation : DebugInfoAnnotation<VarInfo,StructInfo> { |
| 731 | StructInfoAnnotation(ModuleLibrary & ml) : DebugInfoAnnotation ("StructInfo", ml) { |
no outgoing calls
no test coverage detected