File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Sources/SyntaxSparrow/Public Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -117,6 +117,7 @@ extension ModifierAssessing {
117
117
118
118
// MARK: - Conformance
119
119
120
+ extension AssociatedType : ModifierAssessing { }
120
121
extension Actor : ModifierAssessing { }
121
122
extension Class : ModifierAssessing { }
122
123
extension Enumeration : ModifierAssessing { }
@@ -126,7 +127,6 @@ extension ProtocolDecl: ModifierAssessing {}
126
127
extension Structure : ModifierAssessing { }
127
128
extension Subscript : ModifierAssessing { }
128
129
extension Typealias : ModifierAssessing { }
129
-
130
130
extension Variable : ModifierAssessing {
131
131
132
132
/// Returns `true` when the `private` keyword is within the modifier collection with the `set` detail assigned.
Original file line number Diff line number Diff line change 8
8
import Foundation
9
9
10
10
/// Struct representing the raw source for a supporting ``SyntaxSparrow/Declaration` conforming instance
11
- public struct SyntaxSourceDetails {
11
+ public struct SyntaxSourceDetails : Equatable {
12
12
/// The start and end bounds of the source.
13
13
public let location : SyntaxSourceLocation
14
14
You can’t perform that action at this time.
0 commit comments