Skip to content

Commit ed66e85

Browse files
committed
comment
1 parent dc4e479 commit ed66e85

File tree

1 file changed

+1
-13
lines changed

1 file changed

+1
-13
lines changed

Sources/SwiftParser/Directives.swift

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -46,20 +46,8 @@ extension Parser {
4646

4747
/// Parse a conditional compilation block.
4848
///
49-
/// This function should be used to parse conditional compilation statements,
50-
/// declarations, and expressions. It is generic over the particular kind of
51-
/// parse that must occur for these elements, and allows a context-specific
52-
/// syntax kind to be emitted to collect the results. For example, declaration
53-
/// parsing parses items and collects the items into a ``MemberDeclListSyntax``
54-
/// node.
55-
///
5649
/// - Parameters:
57-
/// - parseElement: Parse an element of the conditional compilation block.
58-
/// - addSemicolonIfNeeded: If elements need to be separated by a newline, this
59-
/// allows the insertion of missing semicolons to the
60-
/// previous element.
61-
/// - syntax: A function that aggregates the parsed conditional elements
62-
/// into a syntax collection.
50+
/// - parseBody: Parse a body of single conditional compilation clause.
6351
mutating func parsePoundIfDirective(
6452
_ parseBody: (_ parser: inout Parser) -> RawIfConfigClauseSyntax.Elements?
6553
) -> RawIfConfigDeclSyntax {

0 commit comments

Comments
 (0)