Skip to content

Commit 56b0e30

Browse files
committed
remove unused EFFECT_HAS_DERIVED
1 parent a5288ea commit 56b0e30

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

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

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,8 @@ export const EFFECT_TRANSPARENT = 1 << 17;
1919
export const LEGACY_DERIVED_PROP = 1 << 18;
2020
export const INSPECT_EFFECT = 1 << 19;
2121
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
22+
export const EFFECT_IS_UPDATING = 1 << 21;
23+
export const EFFECT_PRESERVED = 1 << 22; // effects with this flag should not be pruned
2524

2625
// Flags used for async
2726
export const REACTION_IS_UPDATING = 1 << 24;

0 commit comments

Comments
 (0)