mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
* Create Swift libSyntax API This patch is an initial implementation of the Swift libSyntax API. It aims to provide all features of the C++ API but exposed to Swift. It currently resides in SwiftExperimental and will likely exist in a molten state for a while. * Only build SwiftSyntax on macOS
26 lines
1014 B
Swift
26 lines
1014 B
Swift
//===---------------- SourcePresence.swift - Source Presence --------------===//
|
|
//
|
|
// This source file is part of the Swift.org open source project
|
|
//
|
|
// Copyright (c) 2014 - 2017 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
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
import Foundation
|
|
|
|
/// An indicator of whether a Syntax node was found or written in the source.
|
|
///
|
|
/// A `missing` node does not mean, necessarily, that the source item is
|
|
/// considered "implicit", but rather that it was not found in the source.
|
|
public enum SourcePresence: String, Codable {
|
|
/// The syntax was authored by a human and found, or was generated.
|
|
case present = "Present"
|
|
|
|
/// The syntax was expected or optional, but not found in the source.
|
|
case missing = "Missing"
|
|
}
|