mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
This commit defines a schema and YAML serialization for a significant portion of our AST. The API ingestion is a work in progress. See design discussion in ModuleAPIDiff.cpp. Swift SVN r23938
16 lines
351 B
C++
16 lines
351 B
C++
#ifndef SWIFT_IDE_TEST_MODULE_API_DIFF_H
|
|
#define SWIFT_IDE_TEST_MODULE_API_DIFF_H
|
|
|
|
#include "swift/Basic/LLVM.h"
|
|
#include <string>
|
|
|
|
namespace swift {
|
|
|
|
int doGenerateModuleAPIDescription(StringRef MainExecutablePath,
|
|
ArrayRef<std::string> Args);
|
|
|
|
} // end namespace swift
|
|
|
|
#endif // SWIFT_IDE_TEST_MODULE_API_DIFF_H
|
|
|