Skip to content

Commit c4a948d

Browse files
committed
lint
1 parent f0aac15 commit c4a948d

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

packages/svelte/src/internal/client/reactivity/deriveds.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,8 @@ export function derived(fn) {
5353
rv: 0,
5454
v: /** @type {V} */ (null),
5555
wv: 0,
56-
parent: parent_derived ?? active_effect
56+
parent: parent_derived ?? active_effect,
57+
ac: null
5758
};
5859

5960
if (DEV && tracing_mode_flag) {

packages/svelte/src/internal/client/reactivity/effects.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,8 @@ function create_effect(type, fn, sync, push = true) {
107107
prev: null,
108108
teardown: null,
109109
transitions: null,
110-
wv: 0
110+
wv: 0,
111+
ac: null
111112
};
112113

113114
if (DEV) {

0 commit comments

Comments
 (0)