| 433 | } |
| 434 | |
| 435 | void Program::visit(Visitor & vis, bool visitGenerics, bool sortStructures ) { |
| 436 | vis.preVisitProgram(this); |
| 437 | visitModule(vis, thisModule.get(), visitGenerics, sortStructures); |
| 438 | vis.visitProgram(this); |
| 439 | } |
| 440 | |
| 441 | static void collectStructDeps ( const TypeDeclPtr & type, Structure * owner, das_hash_set<Structure *> & deps ) { |
| 442 | if ( !type ) return; |
no test coverage detected