| 376 | } |
| 377 | |
| 378 | void UTModify::generateMainDeletion(const SourceAnalysisReport &SourceReport) { |
| 379 | const auto &MainFuncLoc = SourceReport.getMainFuncLoc(); |
| 380 | if (MainFuncLoc.getFilePath().empty()) |
| 381 | return; |
| 382 | addReplace(Replacement(MainFuncLoc.getFilePath(), MainFuncLoc.getOffset(), |
| 383 | MainFuncLoc.getLength(), "")); |
| 384 | } |
| 385 | |
| 386 | void UTModify::generateTop( |
| 387 | const std::map<std::string, std::string> &FuzzVarDecls, |
nothing calls this directly
no test coverage detected