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 bbb694b commit 6394da7Copy full SHA for 6394da7
packages/svelte/src/internal/client/constants.js
@@ -17,8 +17,8 @@ export const EFFECT_RAN = 1 << 15;
17
export const EFFECT_TRANSPARENT = 1 << 16;
18
export const INSPECT_EFFECT = 1 << 17;
19
export const HEAD_EFFECT = 1 << 18;
20
-export const EFFECT_IS_UPDATING = 1 << 19;
21
-export const EFFECT_PRESERVED = 1 << 20; // effects with this flag should not be pruned
+export const EFFECT_PRESERVED = 1 << 19;
+export const EFFECT_IS_UPDATING = 1 << 20;
22
23
// Flags used for async
24
export const REACTION_IS_UPDATING = 1 << 21;
0 commit comments