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 a5288ea commit 56b0e30Copy full SHA for 56b0e30
packages/svelte/src/internal/client/constants.js
@@ -19,9 +19,8 @@ export const EFFECT_TRANSPARENT = 1 << 17;
19
export const LEGACY_DERIVED_PROP = 1 << 18;
20
export const INSPECT_EFFECT = 1 << 19;
21
export const HEAD_EFFECT = 1 << 20;
22
-export const EFFECT_HAS_DERIVED = 1 << 21;
23
-export const EFFECT_IS_UPDATING = 1 << 22;
24
-export const EFFECT_PRESERVED = 1 << 23; // effects with this flag should not be pruned
+export const EFFECT_IS_UPDATING = 1 << 21;
+export const EFFECT_PRESERVED = 1 << 22; // effects with this flag should not be pruned
25
26
// Flags used for async
27
export const REACTION_IS_UPDATING = 1 << 24;
0 commit comments