Skip to content

Commit 9b233dc

Browse files
committed
Make SyntaxChildrenIndexData internal
1 parent 9c02686 commit 9b233dc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Sources/SwiftSyntax/SyntaxChildren.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
/// The data for an index in a syntax children collection that is not the end
1616
/// index. See `SyntaxChildrenIndex` for the representation of the end index.
17-
public struct SyntaxChildrenIndexData: Comparable {
17+
struct SyntaxChildrenIndexData: Comparable {
1818
/// The UTF-8 offset of the item at this index in the source file
1919
/// See `AbsoluteSyntaxPosition.offset`
2020
let offset: UInt32
@@ -25,7 +25,7 @@ public struct SyntaxChildrenIndexData: Comparable {
2525
/// See `SyntaxIdentifier.indexIntree`
2626
let indexInTree: SyntaxIndexInTree
2727

28-
public static func < (
28+
static func < (
2929
lhs: SyntaxChildrenIndexData,
3030
rhs: SyntaxChildrenIndexData
3131
) -> Bool {

0 commit comments

Comments
 (0)