We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
SyntaxChildrenIndexData
1 parent 9c02686 commit 9b233dcCopy full SHA for 9b233dc
Sources/SwiftSyntax/SyntaxChildren.swift
@@ -14,7 +14,7 @@
14
15
/// The data for an index in a syntax children collection that is not the end
16
/// index. See `SyntaxChildrenIndex` for the representation of the end index.
17
-public struct SyntaxChildrenIndexData: Comparable {
+struct SyntaxChildrenIndexData: Comparable {
18
/// The UTF-8 offset of the item at this index in the source file
19
/// See `AbsoluteSyntaxPosition.offset`
20
let offset: UInt32
@@ -25,7 +25,7 @@ public struct SyntaxChildrenIndexData: Comparable {
25
/// See `SyntaxIdentifier.indexIntree`
26
let indexInTree: SyntaxIndexInTree
27
28
- public static func < (
+ static func < (
29
lhs: SyntaxChildrenIndexData,
30
rhs: SyntaxChildrenIndexData
31
) -> Bool {
0 commit comments