mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
Implement the @export(implementation) and @export(interface) attributes to replace @_alwaysEmitIntoClient and @_neverEmitIntoClient. Provide a warning + Fix-It to start staging out the very-new @_neverEmitIntoClient. We'll hold off on pushing folks toward @_alwaysEmitIntoClient for a little longer.
38 lines
1.3 KiB
C++
38 lines
1.3 KiB
C++
//===-- AST/ExportKind.h ----------------------------------------*- C++ -*-===//
|
|
//
|
|
// This source file is part of the Swift.org open source project
|
|
//
|
|
// Copyright (c) 2025 Apple Inc. and the Swift project authors
|
|
// Licensed under Apache License v2.0 with Runtime Library Exception
|
|
//
|
|
// See https://swift.org/LICENSE.txt for license information
|
|
// See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef SWIFT_AST_EXPORT_KIND_H
|
|
#define SWIFT_AST_EXPORT_KIND_H
|
|
|
|
/// `ExportKind.h` is imported into Swift. Be *very* careful with what you
|
|
/// include here and keep these includes minimal!
|
|
///
|
|
/// See include guidelines and caveats in `BasicBridging.h`.
|
|
#include "swift/Basic/SwiftBridging.h"
|
|
|
|
namespace swift {
|
|
|
|
/// How a particular declaration is exported per the @export attribute.
|
|
enum class ENUM_EXTENSIBILITY_ATTR(closed) ExportKind {
|
|
/// Export only the interface to this declaration (e.g., as a callable symbol)
|
|
/// and never it's definition.
|
|
Interface SWIFT_NAME("interface"),
|
|
|
|
/// Export only the implementation of this declaration and do not produce a
|
|
/// symbol.
|
|
Implementation SWIFT_NAME("implementation"),
|
|
};
|
|
|
|
} // namespace swift
|
|
|
|
#endif // SWIFT_AST_EXPORT_KIND_H
|