-
Notifications
You must be signed in to change notification settings - Fork 128
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support
@Metadata
and @DeprecationSummary
in documentation commen…
- Loading branch information
1 parent
7564732
commit c23571a
Showing
12 changed files
with
476 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
/* | ||
This source file is part of the Swift.org open source project | ||
|
||
Copyright (c) 2024 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 Swift project authors | ||
*/ | ||
|
||
import Foundation | ||
import Markdown | ||
|
||
/// A utlity type for parsing directives from markup. | ||
struct DirectiveParser<Directive: AutomaticDirectiveConvertible> { | ||
|
||
/// Returns a directive of the given type if found in the given sequence of markup elements and the remaining markup. | ||
/// | ||
/// If there are multiple instances of the same directive type, this functions returns the first instance | ||
/// and diagnoses subsequent instances. | ||
func parseSingleDirective( | ||
_ directiveType: Directive.Type, | ||
from markupElements: inout [any Markup], | ||
parentType: Semantic.Type, | ||
source: URL?, | ||
bundle: DocumentationBundle, | ||
context: DocumentationContext, | ||
problems: inout [Problem] | ||
) -> Directive? { | ||
let (directiveElements, remainder) = markupElements.categorize { markup -> Directive? in | ||
guard let childDirective = markup as? BlockDirective, | ||
childDirective.name == Directive.directiveName | ||
else { | ||
return nil | ||
} | ||
return Directive( | ||
from: childDirective, | ||
source: source, | ||
for: bundle, | ||
in: context, | ||
problems: &problems | ||
) | ||
} | ||
|
||
let directive = directiveElements.first | ||
|
||
for extraDirective in directiveElements.dropFirst() { | ||
problems.append( | ||
Problem( | ||
diagnostic: Diagnostic( | ||
source: source, | ||
severity: .warning, | ||
range: extraDirective.originalMarkup.range, | ||
identifier: "org.swift.docc.HasAtMostOne<\(parentType), \(Directive.self)>.DuplicateChildren", | ||
summary: "Duplicate \(Metadata.directiveName.singleQuoted) child directive", | ||
explanation: nil, | ||
notes: [] | ||
), | ||
possibleSolutions: [] | ||
) | ||
) | ||
} | ||
|
||
markupElements = remainder | ||
|
||
return directive | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.