remove unused EFFECT_HAS_DERIVED

pull/15844/head
Rich Harris 3 months ago
parent a5288ea7aa
commit 56b0e308cc

@ -19,9 +19,8 @@ export const EFFECT_TRANSPARENT = 1 << 17;
export const LEGACY_DERIVED_PROP = 1 << 18;
export const INSPECT_EFFECT = 1 << 19;
export const HEAD_EFFECT = 1 << 20;
export const EFFECT_HAS_DERIVED = 1 << 21;
export const EFFECT_IS_UPDATING = 1 << 22;
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
// Flags used for async
export const REACTION_IS_UPDATING = 1 << 24;

Loading…
Cancel
Save