File tree Expand file tree Collapse file tree 1 file changed +4
-6
lines changed
Expand file tree Collapse file tree 1 file changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -1052,9 +1052,9 @@ impl<'a> BindingsBuilder<'a> {
10521052 style : FlowStyle ,
10531053 ) -> Option < Idx < KeyAnnotation > > {
10541054 let mut hashed_name = Hashed :: new ( name) ;
1055- let mut write_info =
1056- self . scopes
1057- . define_in_current_flow ( hashed_name, idx, style. clone ( ) ) ;
1055+ let mut write_info = self
1056+ . scopes
1057+ . define_in_current_flow ( hashed_name, idx, style. clone ( ) ) ;
10581058 if write_info. is_none ( )
10591059 && self . errors_suppressed ( )
10601060 && self . should_bind_unreachable_branches ( )
@@ -1063,9 +1063,7 @@ impl<'a> BindingsBuilder<'a> {
10631063 self . scopes . add_synthetic_definition ( name, key_range) ;
10641064 // Recreate the hash since it borrows `name` by reference and we just mutated state
10651065 hashed_name = Hashed :: new ( name) ;
1066- write_info = self
1067- . scopes
1068- . define_in_current_flow ( hashed_name, idx, style) ;
1066+ write_info = self . scopes . define_in_current_flow ( hashed_name, idx, style) ;
10691067 }
10701068 let write_info = write_info. unwrap_or_else ( || {
10711069 panic ! (
You can’t perform that action at this time.
0 commit comments