File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1997,7 +1997,7 @@ impl Compiler {
19971997 . zip ( values. iter ( ) )
19981998 . partition ( |( k, _) | k. is_some ( ) ) ;
19991999 for ( key, value) in packed {
2000- self . compile_expression ( & key. as_ref ( ) . unwrap ( ) ) ?;
2000+ self . compile_expression ( key. as_ref ( ) . unwrap ( ) ) ?;
20012001 self . compile_expression ( value) ?;
20022002 size += 1 ;
20032003 }
Original file line number Diff line number Diff line change @@ -890,7 +890,7 @@ impl SymbolTableBuilder {
890890 . zip ( values. iter ( ) )
891891 . partition ( |( key, _) | key. is_some ( ) ) ;
892892 for ( key, value) in packed {
893- self . scan_expression ( & key. as_ref ( ) . unwrap ( ) , context) ?;
893+ self . scan_expression ( key. as_ref ( ) . unwrap ( ) , context) ?;
894894 self . scan_expression ( value, context) ?;
895895 }
896896 for ( _, value) in unpacked {
You can’t perform that action at this time.
0 commit comments