mirror of
https://github.com/github/codeql.git
synced 2025-12-18 18:10:39 +01:00
12 lines
389 B
C++
12 lines
389 B
C++
#pragma once
|
|
|
|
#include "swift/extractor/config/SwiftExtractorState.h"
|
|
#include <swift/AST/SourceFile.h>
|
|
#include <swift/Frontend/Frontend.h>
|
|
#include <memory>
|
|
|
|
namespace codeql {
|
|
void extractSwiftFiles(SwiftExtractorState& state, swift::CompilerInstance& compiler);
|
|
void extractExtractLazyDeclarations(SwiftExtractorState& state, swift::CompilerInstance& compiler);
|
|
} // namespace codeql
|