File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed
Sources/VexilMacros/Utilities Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ extension MemberBlockSyntax {
4040 return false
4141
4242 case let . accessors( accessors) :
43- return accessors. allSatisfy ( { $0. accessorSpecifier. tokenKind != . keyword( . get) } )
43+ return accessors. allSatisfy { $0. accessorSpecifier. tokenKind != . keyword( . get) }
4444 }
4545 }
4646 }
Original file line number Diff line number Diff line change @@ -64,16 +64,16 @@ final class EquatableFlagContainerMacroTests: XCTestCase {
6464 struct TestFlags {
6565 @Flag(default: false, description: " Some Flag " )
6666 var someFlag: Bool
67-
67+
6868 var someComputedNotEquatableProperty: (any Error)? {
6969 nil
7070 }
71-
71+
7272 var someComputedPropertyWithAGetter: (any Error)? {
7373 get { fatalError() }
7474 set { fatalError() }
7575 }
76-
76+
7777 var otherStoredProperty: Int {
7878 didSet { fatalError() }
7979 }
@@ -98,16 +98,16 @@ final class EquatableFlagContainerMacroTests: XCTestCase {
9898 lookup: _flagLookup
9999 )
100100 }
101-
101+
102102 var someComputedNotEquatableProperty: (any Error)? {
103103 nil
104104 }
105-
105+
106106 var someComputedPropertyWithAGetter: (any Error)? {
107107 get { fatalError() }
108108 set { fatalError() }
109109 }
110-
110+
111111 var otherStoredProperty: Int {
112112 didSet { fatalError() }
113113 }
You can’t perform that action at this time.
0 commit comments