@@ -463,7 +463,7 @@ public struct Reducer<State, Action, Environment> {
463
463
action toLocalAction: CasePath < GlobalAction , Action > ,
464
464
environment toLocalEnvironment: @escaping ( GlobalEnvironment ) -> Environment ,
465
465
breakpointOnNil: Bool = true ,
466
- _ file: StaticString = #file ,
466
+ _ file: StaticString = #fileID ,
467
467
_ line: UInt = #line
468
468
) -> Reducer < GlobalState , GlobalAction , GlobalEnvironment > {
469
469
. init { globalState, globalAction, globalEnvironment in
@@ -672,7 +672,7 @@ public struct Reducer<State, Action, Environment> {
672
672
/// - Returns: A reducer that works on optional state.
673
673
public func optional(
674
674
breakpointOnNil: Bool = true ,
675
- _ file: StaticString = #file ,
675
+ _ file: StaticString = #fileID ,
676
676
_ line: UInt = #line
677
677
) -> Reducer <
678
678
State ? , Action , Environment
@@ -758,7 +758,7 @@ public struct Reducer<State, Action, Environment> {
758
758
action toLocalAction: CasePath < GlobalAction , ( ID , Action ) > ,
759
759
environment toLocalEnvironment: @escaping ( GlobalEnvironment ) -> Environment ,
760
760
breakpointOnNil: Bool = true ,
761
- _ file: StaticString = #file ,
761
+ _ file: StaticString = #fileID ,
762
762
_ line: UInt = #line
763
763
764
764
) -> Reducer < GlobalState , GlobalAction , GlobalEnvironment > {
@@ -830,7 +830,7 @@ public struct Reducer<State, Action, Environment> {
830
830
action toLocalAction: CasePath < GlobalAction , ( Key , Action ) > ,
831
831
environment toLocalEnvironment: @escaping ( GlobalEnvironment ) -> Environment ,
832
832
breakpointOnNil: Bool = true ,
833
- _ file: StaticString = #file ,
833
+ _ file: StaticString = #fileID ,
834
834
_ line: UInt = #line
835
835
) -> Reducer < GlobalState , GlobalAction , GlobalEnvironment > {
836
836
. init { globalState, globalAction, globalEnvironment in
0 commit comments