| 92 | } |
| 93 | |
| 94 | void UTAnalyzer::initialize(std::string UTType) { |
| 95 | if (!Loader) |
| 96 | return; |
| 97 | |
| 98 | auto Factory = createTCAnalyzerFactory(UTType); |
| 99 | if (!Factory) |
| 100 | return; |
| 101 | |
| 102 | Extractor = Factory->createTCExtractor(Loader->getSourceCollection()); |
| 103 | } |
nothing calls this directly
no test coverage detected