mirror of
https://github.com/github/codeql.git
synced 2026-04-25 16:55:19 +02:00
19 lines
291 B
C++
19 lines
291 B
C++
#pragma once
|
|
|
|
#include <vector>
|
|
#include <unordered_set>
|
|
#include <filesystem>
|
|
|
|
#include <swift/AST/ASTMangler.h>
|
|
|
|
namespace codeql {
|
|
class SwiftMangler {
|
|
public:
|
|
std::string mangledName(const swift::Decl& decl);
|
|
|
|
private:
|
|
swift::Mangle::ASTMangler mangler;
|
|
};
|
|
|
|
} // namespace codeql
|