Skip to content

Commit c582b5d

Browse files
authored
chore: simplify flush_sync (#15346)
1 parent 9873443 commit c582b5d

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

packages/svelte/src/internal/client/runtime.js

+2-5
Original file line numberDiff line numberDiff line change
@@ -858,19 +858,16 @@ export function flush_sync(fn) {
858858
try {
859859
infinite_loop_guard();
860860

861-
/** @type {Effect[]} */
862-
const root_effects = [];
863-
864861
scheduler_mode = FLUSH_SYNC;
865-
queued_root_effects = root_effects;
862+
queued_root_effects = [];
866863
is_micro_task_queued = false;
867864

868865
flush_queued_root_effects(previous_queued_root_effects);
869866

870867
var result = fn?.();
871868

872869
flush_tasks();
873-
if (queued_root_effects.length > 0 || root_effects.length > 0) {
870+
if (queued_root_effects.length > 0) {
874871
flush_sync();
875872
}
876873

0 commit comments

Comments
 (0)