@@ -63,15 +63,15 @@ function create_each_block(key_1, ctx) {
6363
6464function create_fragment ( ctx ) {
6565 let each_blocks = [ ] ;
66- let each_lookup = new Map ( ) ;
67- let each_anchor ;
66+ let each_1_lookup = new Map ( ) ;
67+ let each_1_anchor ;
6868 let each_value = ctx . things ;
6969 const get_key = ctx => ctx . thing . id ;
7070
7171 for ( let i = 0 ; i < each_value . length ; i += 1 ) {
7272 let child_ctx = get_each_context ( ctx , each_value , i ) ;
7373 let key = get_key ( child_ctx ) ;
74- each_lookup . set ( key , each_blocks [ i ] = create_each_block ( key , child_ctx ) ) ;
74+ each_1_lookup . set ( key , each_blocks [ i ] = create_each_block ( key , child_ctx ) ) ;
7575 }
7676
7777 return {
@@ -80,19 +80,19 @@ function create_fragment(ctx) {
8080 each_blocks [ i ] . c ( ) ;
8181 }
8282
83- each_anchor = empty ( ) ;
83+ each_1_anchor = empty ( ) ;
8484 } ,
8585 m ( target , anchor ) {
8686 for ( let i = 0 ; i < each_blocks . length ; i += 1 ) {
8787 each_blocks [ i ] . m ( target , anchor ) ;
8888 }
8989
90- insert ( target , each_anchor , anchor ) ;
90+ insert ( target , each_1_anchor , anchor ) ;
9191 } ,
9292 p ( changed , ctx ) {
9393 const each_value = ctx . things ;
9494 for ( let i = 0 ; i < each_blocks . length ; i += 1 ) each_blocks [ i ] . r ( ) ;
95- each_blocks = update_keyed_each ( each_blocks , changed , get_key , 1 , ctx , each_value , each_lookup , each_anchor . parentNode , fix_and_destroy_block , create_each_block , each_anchor , get_each_context ) ;
95+ each_blocks = update_keyed_each ( each_blocks , changed , get_key , 1 , ctx , each_value , each_1_lookup , each_1_anchor . parentNode , fix_and_destroy_block , create_each_block , each_1_anchor , get_each_context ) ;
9696 for ( let i = 0 ; i < each_blocks . length ; i += 1 ) each_blocks [ i ] . a ( ) ;
9797 } ,
9898 i : noop ,
@@ -102,7 +102,7 @@ function create_fragment(ctx) {
102102 each_blocks [ i ] . d ( detaching ) ;
103103 }
104104
105- if ( detaching ) detach ( each_anchor ) ;
105+ if ( detaching ) detach ( each_1_anchor ) ;
106106 }
107107 } ;
108108}
0 commit comments