File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
packages/svelte/src/internal/client Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -15,17 +15,17 @@ export const DESTROYED = 1 << 14;
15
15
export const EFFECT_RAN = 1 << 15 ;
16
16
/** 'Transparent' effects do not create a transition boundary */
17
17
export const EFFECT_TRANSPARENT = 1 << 16 ;
18
- export const INSPECT_EFFECT = 1 << 18 ;
19
- export const HEAD_EFFECT = 1 << 19 ;
20
- export const EFFECT_PRESERVED = 1 << 20 ;
21
- export const EFFECT_IS_UPDATING = 1 << 21 ;
18
+ export const INSPECT_EFFECT = 1 << 17 ;
19
+ export const HEAD_EFFECT = 1 << 18 ;
20
+ export const EFFECT_PRESERVED = 1 << 19 ;
21
+ export const EFFECT_IS_UPDATING = 1 << 20 ;
22
22
23
23
export const STATE_SYMBOL = Symbol ( '$state' ) ;
24
24
export const LEGACY_PROPS = Symbol ( 'legacy props' ) ;
25
25
export const LOADING_ATTR_SYMBOL = Symbol ( '' ) ;
26
26
export const PROXY_PATH_SYMBOL = Symbol ( 'proxy path' ) ;
27
27
28
- // allow users to ignore aborted signal errors if `reason.stale`
28
+ /** allow users to ignore aborted signal errors if `reason.name === 'StaleReactionError` */
29
29
export const STALE_REACTION = new ( class StaleReactionError extends Error {
30
30
name = 'StaleReactionError' ;
31
31
message = 'The reaction that called `getAbortSignal()` was re-run or destroyed' ;
You can’t perform that action at this time.
0 commit comments