mirror of
https://github.com/github/codeql.git
synced 2025-12-16 16:53:25 +01:00
Visitor code has been split between header and sources to speed up incremental build. Moreover the code was reorganized using a new `infra` bazel package (and `visitors` got promoted to a bazel package as well).
12 lines
328 B
C++
12 lines
328 B
C++
#pragma once
|
|
|
|
#include "swift/extractor/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
|