Skip to content

Commit a95b625

Browse files
committed
unused
1 parent 3085d5d commit a95b625

File tree

2 files changed

+1
-6
lines changed

2 files changed

+1
-6
lines changed

packages/svelte/src/internal/client/dev/tracing.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { snapshot } from '../../shared/clone.js';
44
import { define_property } from '../../shared/utils.js';
55
import { DERIVED, PROXY_PATH_SYMBOL, STATE_SYMBOL } from '#client/constants';
66
import { effect_tracking } from '../reactivity/effects.js';
7-
import { active_reaction, captured_signals, set_captured_signals, untrack } from '../runtime.js';
7+
import { active_reaction } from '../runtime.js';
88

99
/** @type {{ reaction: Reaction | null, entries: Map<Value, Error[]> } | null} */
1010
export let tracing_expressions = null;

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

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -137,11 +137,6 @@ export let skip_reaction = false;
137137
/** @type {Set<Value> | null} */
138138
export let captured_signals = null;
139139

140-
/** @param {Set<Value> | null} value */
141-
export function set_captured_signals(value) {
142-
captured_signals = value;
143-
}
144-
145140
export function increment_write_version() {
146141
return ++write_version;
147142
}

0 commit comments

Comments
 (0)