@@ -705,7 +705,7 @@ impl Config {
705
705
// FIXME @alibektas : Server's health uses error sink but in other places it is not used atm.
706
706
/// Changes made to client and global configurations will partially not be reflected even after `.apply_change()` was called.
707
707
/// The return tuple's bool component signals whether the `GlobalState` should call its `update_configuration()` method.
708
- pub fn apply_change (
708
+ fn apply_change_with_sink (
709
709
& self ,
710
710
change : ConfigChange ,
711
711
error_sink : & mut ConfigError ,
@@ -809,10 +809,13 @@ impl Config {
809
809
( config, should_update)
810
810
}
811
811
812
- pub fn apply_change_whatever ( & self , change : ConfigChange ) -> ( Config , ConfigError ) {
812
+ /// Given `change` this generates a new `Config`, thereby collecting errors of type `ConfigError`.
813
+ /// If there are changes that have global/client level effect, the last component of the return type
814
+ /// will be set to `true`, which should be used by the `GlobalState` to update itself.
815
+ pub fn apply_change ( & self , change : ConfigChange ) -> ( Config , ConfigError , bool ) {
813
816
let mut e = ConfigError ( vec ! [ ] ) ;
814
- let ( config, _ ) = self . apply_change ( change, & mut e) ;
815
- ( config, e)
817
+ let ( config, should_update ) = self . apply_change_with_sink ( change, & mut e) ;
818
+ ( config, e, should_update )
816
819
}
817
820
}
818
821
@@ -3300,8 +3303,7 @@ mod tests {
3300
3303
"server" : null,
3301
3304
} } ) ) ;
3302
3305
3303
- let mut error_sink = ConfigError :: default ( ) ;
3304
- ( config, _) = config. apply_change ( change, & mut error_sink) ;
3306
+ ( config, _, _) = config. apply_change ( change) ;
3305
3307
assert_eq ! ( config. proc_macro_srv( ) , None ) ;
3306
3308
}
3307
3309
@@ -3320,8 +3322,7 @@ mod tests {
3320
3322
"server" : project_root( ) . display( ) . to_string( ) ,
3321
3323
} } ) ) ;
3322
3324
3323
- let mut error_sink = ConfigError :: default ( ) ;
3324
- ( config, _) = config. apply_change ( change, & mut error_sink) ;
3325
+ ( config, _, _) = config. apply_change ( change) ;
3325
3326
assert_eq ! ( config. proc_macro_srv( ) , Some ( AbsPathBuf :: try_from( project_root( ) ) . unwrap( ) ) ) ;
3326
3327
}
3327
3328
@@ -3342,8 +3343,7 @@ mod tests {
3342
3343
"server" : "./server"
3343
3344
} } ) ) ;
3344
3345
3345
- let mut error_sink = ConfigError :: default ( ) ;
3346
- ( config, _) = config. apply_change ( change, & mut error_sink) ;
3346
+ ( config, _, _) = config. apply_change ( change) ;
3347
3347
3348
3348
assert_eq ! (
3349
3349
config. proc_macro_srv( ) ,
@@ -3367,8 +3367,7 @@ mod tests {
3367
3367
"rust" : { "analyzerTargetDir" : null }
3368
3368
} ) ) ;
3369
3369
3370
- let mut error_sink = ConfigError :: default ( ) ;
3371
- ( config, _) = config. apply_change ( change, & mut error_sink) ;
3370
+ ( config, _, _) = config. apply_change ( change) ;
3372
3371
assert_eq ! ( config. cargo_targetDir( ) , & None ) ;
3373
3372
assert ! (
3374
3373
matches!( config. flycheck( ) , FlycheckConfig :: CargoCommand { options, .. } if options. target_dir. is_none( ) )
@@ -3390,8 +3389,7 @@ mod tests {
3390
3389
"rust" : { "analyzerTargetDir" : true }
3391
3390
} ) ) ;
3392
3391
3393
- let mut error_sink = ConfigError :: default ( ) ;
3394
- ( config, _) = config. apply_change ( change, & mut error_sink) ;
3392
+ ( config, _, _) = config. apply_change ( change) ;
3395
3393
3396
3394
assert_eq ! ( config. cargo_targetDir( ) , & Some ( TargetDirectory :: UseSubdirectory ( true ) ) ) ;
3397
3395
assert ! (
@@ -3414,8 +3412,7 @@ mod tests {
3414
3412
"rust" : { "analyzerTargetDir" : "other_folder" }
3415
3413
} ) ) ;
3416
3414
3417
- let mut error_sink = ConfigError :: default ( ) ;
3418
- ( config, _) = config. apply_change ( change, & mut error_sink) ;
3415
+ ( config, _, _) = config. apply_change ( change) ;
3419
3416
3420
3417
assert_eq ! (
3421
3418
config. cargo_targetDir( ) ,
0 commit comments