mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
12 lines
312 B
C++
12 lines
312 B
C++
#pragma once
|
|
|
|
#include "SwiftExtractorConfiguration.h"
|
|
#include <swift/AST/SourceFile.h>
|
|
#include <swift/Frontend/Frontend.h>
|
|
#include <memory>
|
|
|
|
namespace codeql {
|
|
void extractSwiftFiles(const SwiftExtractorConfiguration& config,
|
|
swift::CompilerInstance& compiler);
|
|
} // namespace codeql
|