mirror of
https://github.com/github/codeql.git
synced 2025-12-16 16:53:25 +01:00
This should cover `-merge-modules` mode. Dumping of the configuration to the target files was moved to a separate pair of header/source files, as now it is also done in `SwiftOutputRewrite.cpp`.
12 lines
332 B
C++
12 lines
332 B
C++
#pragma once
|
|
|
|
#include "swift/extractor/infra/TargetFile.h"
|
|
#include "swift/extractor/SwiftExtractorConfiguration.h"
|
|
|
|
namespace codeql {
|
|
|
|
std::optional<TargetFile> createTargetTrapFile(const SwiftExtractorConfiguration& configuration,
|
|
std::string_view target);
|
|
|
|
} // namespace codeql
|