|
246 | 246 | switch store.state { |
247 | 247 |
|
248 | 248 | } |
249 | | - }} |
| 249 | + } |
| 250 | + } |
250 | 251 |
|
251 | 252 | extension Destination: ComposableArchitecture.CaseReducer, ComposableArchitecture.Reducer { |
252 | 253 | } |
|
298 | 299 | case activity(Activity.Action) |
299 | 300 | case timeline(Timeline.Action) |
300 | 301 | case tweet(Tweet.Action) |
301 | | - case alert(AlertState<Alert> .Action) |
| 302 | + case alert(Alert) |
302 | 303 | } |
303 | 304 |
|
304 | 305 | @ComposableArchitecture.ReducerBuilder<Self.State, Self.Action> |
305 | | - static var body: ComposableArchitecture.ReducerBuilder<Self.State, Self.Action> ._Sequence<ComposableArchitecture.ReducerBuilder<Self.State, Self.Action> ._Sequence<ComposableArchitecture.Scope<Self.State, Self.Action, Activity>, ComposableArchitecture.Scope<Self.State, Self.Action, Timeline>>, ComposableArchitecture.Scope<Self.State, Self.Action, Tweet>> { |
| 306 | + static var body: ComposableArchitecture.ReducerBuilder<Self.State, Self.Action>._Sequence<ComposableArchitecture.ReducerBuilder<Self.State, Self.Action>._Sequence<ComposableArchitecture.Scope<Self.State, Self.Action, Activity>, ComposableArchitecture.Scope<Self.State, Self.Action, Timeline>>, ComposableArchitecture.Scope<Self.State, Self.Action, Tweet>> { |
306 | 307 | ComposableArchitecture.Scope(state: \Self.State.Cases.activity, action: \Self.Action.Cases.activity) { |
307 | 308 | Activity() |
308 | 309 | } |
|
372 | 373 | } |
373 | 374 |
|
374 | 375 | @ComposableArchitecture.ReducerBuilder<Self.State, Self.Action> |
375 | | - static var body: ComposableArchitecture.ReducerBuilder<Self.State, Self.Action> ._Sequence<ComposableArchitecture.Scope<Self.State, Self.Action, Timeline>, ComposableArchitecture.Scope<Self.State, Self.Action, Meeting>> { |
| 376 | + static var body: ComposableArchitecture.ReducerBuilder<Self.State, Self.Action>._Sequence<ComposableArchitecture.Scope<Self.State, Self.Action, Timeline>, ComposableArchitecture.Scope<Self.State, Self.Action, Meeting>> { |
376 | 377 | ComposableArchitecture.Scope(state: \Self.State.Cases.timeline, action: \Self.Action.Cases.timeline) { |
377 | 378 | Timeline() |
378 | 379 | } |
|
572 | 573 |
|
573 | 574 | @CasePathable |
574 | 575 | enum Action { |
575 | | - case alert(AlertState<Never> .Action) |
| 576 | + case alert(Never) |
576 | 577 | } |
577 | 578 |
|
578 | 579 | @ComposableArchitecture.ReducerBuilder<Self.State, Self.Action> |
|
629 | 630 | } |
630 | 631 |
|
631 | 632 | @ComposableArchitecture.ReducerBuilder<Self.State, Self.Action> |
632 | | - static var body: ComposableArchitecture.ReducerBuilder<Self.State, Self.Action> ._Sequence<ComposableArchitecture.Scope<Self.State, Self.Action, Activity>, ComposableArchitecture.Scope<Self.State, Self.Action, Timeline>> { |
| 633 | + static var body: ComposableArchitecture.ReducerBuilder<Self.State, Self.Action>._Sequence<ComposableArchitecture.Scope<Self.State, Self.Action, Activity>, ComposableArchitecture.Scope<Self.State, Self.Action, Timeline>> { |
633 | 634 | ComposableArchitecture.Scope(state: \Self.State.Cases.activity, action: \Self.Action.Cases.activity) { |
634 | 635 | Activity() |
635 | 636 | } |
|
751 | 752 |
|
752 | 753 | @CasePathable |
753 | 754 | enum Action { |
754 | | - case alert(AlertState<Alert> .Action) |
755 | | - case dialog(ConfirmationDialogState<Dialog> .Action) |
| 755 | + case alert(Alert) |
| 756 | + case dialog(Dialog) |
756 | 757 | case meeting(Swift.Never) |
757 | 758 | } |
758 | 759 |
|
|
820 | 821 | } |
821 | 822 |
|
822 | 823 | @ComposableArchitecture.ReducerBuilder<Self.State, Self.Action> |
823 | | - static var body: ComposableArchitecture.ReducerBuilder<Self.State, Self.Action> ._Sequence<ComposableArchitecture.ReducerBuilder<Self.State, Self.Action> ._Sequence<ComposableArchitecture.Scope<Self.State, Self.Action, Counter>, ComposableArchitecture.Scope<Self.State, Self.Action, Counter>>, ComposableArchitecture.Scope<Self.State, Self.Action, Counter>> { |
| 824 | + static var body: ComposableArchitecture.ReducerBuilder<Self.State, Self.Action>._Sequence<ComposableArchitecture.ReducerBuilder<Self.State, Self.Action>._Sequence<ComposableArchitecture.Scope<Self.State, Self.Action, Counter>, ComposableArchitecture.Scope<Self.State, Self.Action, Counter>>, ComposableArchitecture.Scope<Self.State, Self.Action, Counter>> { |
824 | 825 | ComposableArchitecture.Scope(state: \Self.State.Cases.drillDown, action: \Self.Action.Cases.drillDown) { |
825 | 826 | Counter() |
826 | 827 | } |
|
1098 | 1099 | enum Action: Equatable, Hashable, Sendable { |
1099 | 1100 | } |
1100 | 1101 |
|
1101 | | - let body = ComposableArchitecture.EmptyReducer<State, Action>()} |
| 1102 | + let body = ComposableArchitecture.EmptyReducer<State, Action>() |
| 1103 | + } |
1102 | 1104 |
|
1103 | 1105 | @available(iOS, unavailable) extension Feature: ComposableArchitecture.Reducer { |
1104 | 1106 | } |
|
1183 | 1185 | case child(ChildFeature.Action) |
1184 | 1186 | #if os(macOS) |
1185 | 1187 | case mac(MacFeature.Action) |
1186 | | - case macAlert(AlertState<MacAlert> .Action) |
| 1188 | + case macAlert(MacAlert) |
1187 | 1189 | #elseif os(iOS) |
1188 | 1190 | case phone(PhoneFeature.Action) |
1189 | 1191 | #else |
|
1194 | 1196 | #if DEBUG |
1195 | 1197 | #if INNER |
1196 | 1198 | case inner(InnerFeature.Action) |
1197 | | - case innerDialog(ConfirmationDialogState<InnerDialog> .Action) |
| 1199 | + case innerDialog(InnerDialog) |
1198 | 1200 | #endif |
1199 | 1201 | #endif |
1200 | 1202 |
|
|
0 commit comments