mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
This moves the swift-lang library out of the tools/SourceKit directory and into the stdlib directory. As it stands, the library required that the standard library and the SDK overlay was being built. This is implicitly done when building the stdlib subdirectory. Furthermore, it had an odd tie between the flags for Swift and SourceKit which now have the logic separated. This clearly delineates the host and target components in the repository.
38 lines
1.5 KiB
Swift
38 lines
1.5 KiB
Swift
%{
|
|
# -*- mode: Swift -*-
|
|
from gyb_sourcekit_support.UIDs import UID_KEYS
|
|
from gyb_sourcekit_support.UIDs import UID_REQUESTS
|
|
from gyb_sourcekit_support.UIDs import UID_KINDS
|
|
# Ignore the following admonition; it applies to the resulting .swift file only
|
|
}%
|
|
//// Automatically Generated From UIDs.swift.gyb.
|
|
//// Do Not Edit Directly!
|
|
//===--------------- UIDs.swift - Sourcekitd UIDs in Swift ----------------===//
|
|
//
|
|
// This source file is part of the Swift.org open source project
|
|
//
|
|
// Copyright (c) 2014 - 2018 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
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
extension SourceKitdUID {
|
|
% for K in UID_KEYS:
|
|
public static let key_${K.internalName} = SourceKitdUID(string: "${K.externalName}")
|
|
% end
|
|
|
|
% for R in UID_REQUESTS:
|
|
public static let request_${R.internalName} = SourceKitdUID(string: "${R.externalName}")
|
|
% end
|
|
|
|
% for K in UID_KINDS:
|
|
public static let kind_${K.internalName} = SourceKitdUID(string: "${K.externalName}")
|
|
% end
|
|
|
|
public static let compilerCrashedNotification = SourceKitdUID(string: "notification.toolchain-compiler-crashed")
|
|
public static let source_notification_editor_documentupdate = SourceKitdUID(string: "source.notification.editor.documentupdate")
|
|
}
|