File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -45,8 +45,8 @@ export function flush() {
45
45
for ( let i = 0 ; i < dirty_components . length ; i += 1 ) {
46
46
const component = dirty_components [ i ] ;
47
47
set_current_component ( component ) ;
48
- const is_dirty_from_binding = previous_dirty_components . indexOf ( component ) > - 1 ;
49
- update ( component . $$ , is_dirty_from_binding ) ;
48
+ const is_previous_dirty = previous_dirty_components . indexOf ( component ) > - 1 ;
49
+ update ( component . $$ , is_previous_dirty ) ;
50
50
}
51
51
previous_dirty_components = [ ] ;
52
52
set_current_component ( null ) ;
@@ -83,14 +83,14 @@ export function flush() {
83
83
seen_callbacks . clear ( ) ;
84
84
}
85
85
86
- function update ( $$ , is_dirty_from_binding ) {
86
+ function update ( $$ , is_previous_dirty ) {
87
87
if ( $$ . fragment !== null ) {
88
88
$$ . update ( ) ;
89
- if ( ! is_dirty_from_binding ) run_all ( $$ . before_update ) ;
89
+ if ( ! is_previous_dirty ) run_all ( $$ . before_update ) ;
90
90
const dirty = $$ . dirty ;
91
91
$$ . dirty = [ - 1 ] ;
92
92
$$ . fragment && $$ . fragment . p ( $$ . ctx , dirty ) ;
93
- // if (!is_dirty_from_binding ) run_all($$.after_update);
93
+ // if (!is_previous_dirty ) run_all($$.after_update);
94
94
$$ . after_update . forEach ( add_render_callback ) ;
95
95
}
96
96
}
You can’t perform that action at this time.
0 commit comments