Skip to content

Minor Chores for 5.1.0 release #61

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Apr 3, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,7 @@ extension ModifierAssessing {

// MARK: - Conformance

extension AssociatedType: ModifierAssessing {}
extension Actor: ModifierAssessing {}
extension Class: ModifierAssessing {}
extension Enumeration: ModifierAssessing {}
Expand All @@ -126,7 +127,6 @@ extension ProtocolDecl: ModifierAssessing {}
extension Structure: ModifierAssessing {}
extension Subscript: ModifierAssessing {}
extension Typealias: ModifierAssessing {}

extension Variable: ModifierAssessing {

/// Returns `true` when the `private` keyword is within the modifier collection with the `set` detail assigned.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import Foundation

/// Struct representing the raw source for a supporting ``SyntaxSparrow/Declaration` conforming instance
public struct SyntaxSourceDetails {
public struct SyntaxSourceDetails: Equatable {
/// The start and end bounds of the source.
public let location: SyntaxSourceLocation

Expand Down