Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit ec81491

Browse files
committedApr 21, 2025·
shuffle
1 parent 2087b3e commit ec81491

File tree

1 file changed

+5
-5
lines changed
  • packages/svelte/src/internal/client/reactivity

1 file changed

+5
-5
lines changed
 

‎packages/svelte/src/internal/client/reactivity/batch.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,17 +30,17 @@ export class Batch {
3030
/** @type {Map<Source, any>} */
3131
#current = new Map();
3232

33+
/** @type {Set<() => void>} */
34+
#callbacks = new Set();
35+
36+
#pending = 0;
37+
3338
/** @type {Set<Effect>} */
3439
effects = new Set();
3540

3641
/** @type {Set<Effect>} */
3742
skipped_effects = new Set();
3843

39-
/** @type {Set<() => void>} */
40-
#callbacks = new Set();
41-
42-
#pending = 0;
43-
4444
apply() {
4545
var current_values = new Map();
4646

0 commit comments

Comments
 (0)
Please sign in to comment.