Skip to content

Commit

Permalink
Update Sources/SymbolKit/SymbolGraph/Symbol/Symbol+KindIdentifier.swift
Browse files Browse the repository at this point in the history
Co-authored-by: Kyle <[email protected]>
  • Loading branch information
QuietMisdreavus and Kyle-Ye authored Dec 21, 2021
1 parent 14c625d commit e0999b2
Showing 1 changed file with 19 additions and 19 deletions.
38 changes: 19 additions & 19 deletions Sources/SymbolKit/SymbolGraph/Symbol/Symbol+KindIdentifier.swift
Original file line number Diff line number Diff line change
Expand Up @@ -42,25 +42,25 @@ extension SymbolGraph.Symbol {
public static let module = KindIdentifier(rawIdentifier: "module")

public static let allCases: [KindIdentifier] = [
.`associatedtype`,
.`class`,
.`deinit`,
.`enum`,
.`case`,
.`func`,
.`operator`,
.`init`,
.`method`,
.`property`,
.`protocol`,
.`struct`,
.`subscript`,
.`typeMethod`,
.`typeProperty`,
.`typeSubscript`,
.`typealias`,
.`var`,
.`module`
.associatedtype,
.class,
.deinit,
.enum,
.case,
.func,
.operator,
.`init`,
.method,
.property,
.protocol,
.struct,
.subscript,
.typeMethod,
.typeProperty,
.typeSubscript,
.typealias,
.var,
.module,
]

/// Check the given identifier string against the list of known identifiers.
Expand Down

0 comments on commit e0999b2

Please sign in to comment.