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.
1 parent 73a21a8 commit 30bfccdCopy full SHA for 30bfccd
Sources/SwiftBasicFormat/Syntax+Extensions.swift
@@ -12,7 +12,7 @@
12
13
import SwiftSyntax
14
15
-public extension TokenSyntax {
+extension TokenSyntax {
16
/// The indentation of this token
17
///
18
/// In contrast to `indentationOfLine`, this does not walk to previous tokens to
@@ -23,7 +23,7 @@ public extension TokenSyntax {
23
}
24
25
/// Returns the indentation of the line this token occurs on
26
- var indentationOfLine: Trivia {
+ public var indentationOfLine: Trivia {
27
var token: TokenSyntax = self
28
if let indentation = token.indentation {
29
return indentation
0 commit comments