|
302 | 302 | } |
303 | 303 |
|
304 | 304 | @ComposableArchitecture.ReducerBuilder<Self.State, Self.Action> |
305 | | - static var body: ReducerBuilder<Self.State, Self.Action>._Sequence<ReducerBuilder<Self.State, Self.Action>._Sequence<Scope<Self.State, Self.Action, Activity>, Scope<Self.State, Self.Action, Timeline>>, Scope<Self.State, Self.Action, Tweet>> { |
| 305 | + static var body: ReducerBuilder<Self.State, Self.Action>._Sequence<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 | 306 | ComposableArchitecture.Scope(state: \Self.State.Cases.activity, action: \Self.Action.Cases.activity) { |
307 | 307 | Activity() |
308 | 308 | } |
|
372 | 372 | } |
373 | 373 |
|
374 | 374 | @ComposableArchitecture.ReducerBuilder<Self.State, Self.Action> |
375 | | - static var body: ReducerBuilder<Self.State, Self.Action>._Sequence<Scope<Self.State, Self.Action, Activity>, Scope<Self.State, Self.Action, Timeline>> { |
| 375 | + static var body: ReducerBuilder<Self.State, Self.Action>._Sequence<ComposableArchitecture.Scope<Self.State, Self.Action, Activity>, ComposableArchitecture.Scope<Self.State, Self.Action, Timeline>> { |
376 | 376 | ComposableArchitecture.Scope(state: \Self.State.Cases.activity, action: \Self.Action.Cases.activity) { |
377 | 377 | Activity() |
378 | 378 | } |
|
434 | 434 | } |
435 | 435 |
|
436 | 436 | @ComposableArchitecture.ReducerBuilder<Self.State, Self.Action> |
437 | | - static var body: Scope<Self.State, Self.Action, Timeline> { |
| 437 | + static var body: ComposableArchitecture.Scope<Self.State, Self.Action, Timeline> { |
438 | 438 | ComposableArchitecture.Scope(state: \Self.State.Cases.timeline, action: \Self.Action.Cases.timeline) { |
439 | 439 | Timeline() |
440 | 440 | } |
|
561 | 561 | } |
562 | 562 |
|
563 | 563 | @ComposableArchitecture.ReducerBuilder<Self.State, Self.Action> |
564 | | - static var body: ReducerBuilder<Self.State, Self.Action>._Sequence<ReducerBuilder<Self.State, Self.Action>._Sequence<Scope<Self.State, Self.Action, Counter>, Scope<Self.State, Self.Action, Counter>>, Scope<Self.State, Self.Action, Counter>> { |
| 564 | + static var body: ReducerBuilder<Self.State, Self.Action>._Sequence<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>> { |
565 | 565 | ComposableArchitecture.Scope(state: \Self.State.Cases.drillDown, action: \Self.Action.Cases.drillDown) { |
566 | 566 | Counter() |
567 | 567 | } |
|
624 | 624 | } |
625 | 625 |
|
626 | 626 | @ComposableArchitecture.ReducerBuilder<Self.State, Self.Action> |
627 | | - static var body: Scope<Self.State, Self.Action, Nested.Feature> { |
| 627 | + static var body: ComposableArchitecture.Scope<Self.State, Self.Action, Nested.Feature> { |
628 | 628 | ComposableArchitecture.Scope(state: \Self.State.Cases.feature, action: \Self.Action.Cases.feature) { |
629 | 629 | Nested.Feature() |
630 | 630 | } |
|
0 commit comments