mirror of
https://github.com/apple/sourcekit-lsp.git
synced 2026-03-06 18:24:36 +01:00
56 lines
2.5 KiB
Swift
56 lines
2.5 KiB
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
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
/// A symbol kind.
|
|
///
|
|
/// In LSP, this is an integer, so we don't use a closed set.
|
|
public struct SymbolKind: RawRepresentable, Codable, Hashable {
|
|
|
|
public var rawValue: Int
|
|
|
|
public init(rawValue: Int) {
|
|
self.rawValue = rawValue
|
|
}
|
|
|
|
// MARK: LSP symbol kinds
|
|
|
|
// LSP 1 kinds, guaranteed to be supported by all clients.
|
|
public static let file: SymbolKind = SymbolKind(rawValue: 1)
|
|
public static let module: SymbolKind = SymbolKind(rawValue: 2)
|
|
public static let namespace: SymbolKind = SymbolKind(rawValue: 3)
|
|
public static let package: SymbolKind = SymbolKind(rawValue: 4)
|
|
public static let `class`: SymbolKind = SymbolKind(rawValue: 5)
|
|
public static let method: SymbolKind = SymbolKind(rawValue: 6)
|
|
public static let property: SymbolKind = SymbolKind(rawValue: 7)
|
|
public static let field: SymbolKind = SymbolKind(rawValue: 8)
|
|
public static let constructor: SymbolKind = SymbolKind(rawValue: 9)
|
|
public static let `enum`: SymbolKind = SymbolKind(rawValue: 10)
|
|
public static let interface: SymbolKind = SymbolKind(rawValue: 11)
|
|
public static let function: SymbolKind = SymbolKind(rawValue: 12)
|
|
public static let variable: SymbolKind = SymbolKind(rawValue: 13)
|
|
public static let constant: SymbolKind = SymbolKind(rawValue: 14)
|
|
public static let string: SymbolKind = SymbolKind(rawValue: 15)
|
|
public static let number: SymbolKind = SymbolKind(rawValue: 16)
|
|
public static let boolean: SymbolKind = SymbolKind(rawValue: 17)
|
|
public static let array: SymbolKind = SymbolKind(rawValue: 18)
|
|
|
|
// LSP 3+
|
|
public static let object: SymbolKind = SymbolKind(rawValue: 19)
|
|
public static let key: SymbolKind = SymbolKind(rawValue: 20)
|
|
public static let null: SymbolKind = SymbolKind(rawValue: 21)
|
|
public static let enumMember: SymbolKind = SymbolKind(rawValue: 22)
|
|
public static let `struct`: SymbolKind = SymbolKind(rawValue: 23)
|
|
public static let event: SymbolKind = SymbolKind(rawValue: 24)
|
|
public static let `operator`: SymbolKind = SymbolKind(rawValue: 25)
|
|
public static let typeParameter: SymbolKind = SymbolKind(rawValue: 26)
|
|
}
|