| 208 | } |
| 209 | |
| 210 | Program::Program() { |
| 211 | ref_count_magic = TRACK_PTR_PROGRAM; |
| 212 | thisModule = make_unique<ModuleDas>(); |
| 213 | library.addBuiltInModule(); |
| 214 | library.addModule(thisModule.get()); |
| 215 | } |
| 216 | |
| 217 | TypeDecl * Program::makeTypeDeclaration(const LineInfo &at, const string &name) { |
| 218 | das::vector<das::StructurePtr> structs; |
nothing calls this directly
no test coverage detected