Skip to content

Commit 0bd5310

Browse files
committed
unused
1 parent 5a05dc5 commit 0bd5310

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

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

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ import {
2828
ROOT_EFFECT,
2929
LEGACY_DERIVED_PROP,
3030
DISCONNECTED,
31-
BOUNDARY_EFFECT,
3231
REACTION_IS_UPDATING,
3332
EFFECT_IS_UPDATING,
3433
EFFECT_ASYNC,
@@ -46,7 +45,6 @@ import {
4645
update_derived
4746
} from './reactivity/deriveds.js';
4847
import * as e from './errors.js';
49-
import { FILENAME } from '../../constants.js';
5048
import { async_mode_flag, tracing_mode_flag } from '../flags/index.js';
5149
import { tracing_expressions, get_stack } from './dev/tracing.js';
5250
import {
@@ -56,20 +54,10 @@ import {
5654
set_component_context,
5755
set_dev_current_component_function
5856
} from './context.js';
59-
import { Boundary } from './dom/blocks/boundary.js';
6057
import * as w from './warnings.js';
61-
import { is_firefox } from './dom/operations.js';
6258
import { current_batch, Batch, batch_deriveds } from './reactivity/batch.js';
63-
import { log_effect_tree, root } from './dev/debug.js';
6459
import { handle_error, invoke_error_boundary } from './error-handling.js';
6560

66-
// Used for DEV time error handling
67-
/** @param {WeakSet<Error>} value */
68-
const handled_errors = new WeakSet();
69-
let is_throwing_error = false;
70-
71-
let is_flushing = false;
72-
7361
/** @type {Effect | null} */
7462
let last_scheduled_effect = null;
7563

0 commit comments

Comments
 (0)