@@ -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' ;
4847import * as e from './errors.js' ;
49- import { FILENAME } from '../../constants.js' ;
5048import { async_mode_flag , tracing_mode_flag } from '../flags/index.js' ;
5149import { tracing_expressions , get_stack } from './dev/tracing.js' ;
5250import {
@@ -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' ;
6057import * as w from './warnings.js' ;
61- import { is_firefox } from './dom/operations.js' ;
6258import { current_batch , Batch , batch_deriveds } from './reactivity/batch.js' ;
63- import { log_effect_tree , root } from './dev/debug.js' ;
6459import { 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 } */
7462let last_scheduled_effect = null ;
7563
0 commit comments