We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 42d5c7e commit 0530c2cCopy full SHA for 0530c2c
packages/svelte/src/internal/client/reactivity/batch.js
@@ -26,7 +26,12 @@ function update_pending() {
26
/** @type {Map<Derived, any> | null} */
27
export let batch_deriveds = null;
28
29
+/** TODO handy for debugging, but we should probably eventually delete it */
30
+let uid = 1;
31
+
32
export class Batch {
33
+ id = uid++;
34
35
/** @type {Map<Source, any>} */
36
#previous = new Map();
37
0 commit comments